c – 如何在FreeBSD中获取打开的posix共享内存段列表

前端之家收集整理的这篇文章主要介绍了c – 如何在FreeBSD中获取打开的posix共享内存段列表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
linux中,我可以通过获取/ dev / shm目录列表获得打开的posix共享内存段列表.

我如何以编程方式获取FreeBSD中所有打开的posix共享内存段的列表?
假设使用shm_open打开了段,我甚至不知道用作shm_open的第一个参数的名称的一部分.

解决方法

你不能.请参阅/sys/kern/uipc_shm.c中的注释:
* TODO:
 *
 * (2) Need to export data to a userland tool via a sysctl.  Should ipcs(1)
 *     and ipcrm(1) be expanded or should new tools to manage both POSIX
 *     kernel semaphores and POSIX shared memory be written?
 *
 * (3) Add support for this file type to fstat(1).
原文链接:https://www.f2er.com/c/117810.html

猜你在找的C&C++相关文章