我如何知道 pthread_mutex_destroy 中的系统错误是什么?

发布于 2024-10-30 18:09:21 字数 158 浏览 2 评论 0原文

我正在使用命令“pthread_mutex_destroy(&lock);”。

当我检查返回值时 - 它返回数字 16。
在该命令的手册页中,据说失败时会返回非零值,但没有指定方法来检查它。

如果我无法访问 errno 消息,我如何知道错误的根源是什么?

I'm using the command 'pthread_mutex_destroy(&lock);'.

When I check the return value - it returns the number 16.
In the man page of this command it is said that a non-zero value is returned on failure, but there is no specified way to check it.

How can I know what is the source of my error if I have no access to errno messages?

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

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

发布评论

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

评论(1

傲娇萝莉攻 2024-11-06 18:09:21

命令行:perror 16

来源:perror("pthread_mutex_destroy");

或使用strerror(16);

Commandline: perror 16

Source: perror("pthread_mutex_destroy");

Or use strerror(16);

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