作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 Mac OS X 10.6.5 内核库。具体来说,我正在尝试对 crget() 函数进行非常简单的调用(请参阅:http://fxr.watson.org/fxr/source/sys/ucred.h?v=DFBSD#L101 了解函数原型(prototype))。
代码只有:
#include <sys/param.h>
#include <sys/ucred.h>
// Main().
int main (void) {
// Return a ucred struct from kernel for this process.
struct ucred *processCredentials = crget();
// Rest of code...
return 0;
}
XCode 报告:
架构 i386 的 undefined symbol : “_crget”,引用自: main.o 中的 _mainld:未找到架构 i386 的符号
有人可以告诉我我错过了什么吗?
谢谢
斯科特
最佳答案
Note: Functions for working with basic user credential [sic] are not exported outside of the kernel, and thus are not generally available to kernel extensions.
因此,除非您正确修改内核,或者使用可能相当于残暴黑客的手段,否则您无法链接到它们。
关于c - 当我包含 <sys/ucred.h> 时,为什么 Xcode 4 Preview 5 无法解析 crget() 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4288088/
我正在尝试使用 Mac OS X 10.6.5 内核库。具体来说,我正在尝试对 crget() 函数进行非常简单的调用(请参阅:http://fxr.watson.org/fxr/source/sys
我是一名优秀的程序员,十分优秀!