当我包含 时,为什么 Xcode 4 Preview 5 无法解析 crget() 函数?

发布于 2024-10-05 00:53:34 字数 670 浏览 6 评论 0 原文

我正在试验 Mac OS X 10.6.5 内核库。具体来说,我尝试对 crget() 函数进行非常简单的调用(请参阅:http://fxr.watson.org/fxr/source/sys/ucred.h?v=DFBSD#L101 函数原型)。

代码只有:

#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 reports:

Undefined Symbols for Architecture i386: “_crget”,引用自: main.o 中的 _main ld:未找到架构 i386 的符号

有人可以告诉我我缺少什么吗?

谢谢,

斯科特

I am experimenting with the Mac OS X 10.6.5 kernel libraries. Specifically, I am attempting to do a very simple call to the crget() function (please see: http://fxr.watson.org/fxr/source/sys/ucred.h?v=DFBSD#L101 for function prototype).

The code is only:

#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 reports:

Undefined symbols for architecture i386:
"_crget", referenced from:
_main in main.o
ld: symbol(s) not found for architecture i386

Can someone please tell me what I'm missing ?

Thanks,

Scott

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

复古式 2024-10-12 00:53:34

来自 文档

注意:使用基本用户凭证[原文如此]的函数不会导出到内核之外,因此通常不可用于内核扩展。

因此,除非您正确修改内核,或者使用可能相当于残暴黑客的手段,否则您无法链接到它们。

From the documentation:

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.

So unless you're modifying the kernel proper, or using what may amount to an atrocious hack, you can't link against them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文