inotify_init - 初始化一個inotify範例
內容簡介
#include <sys/inotify.h>
int inotify_init(void)
描述
inotify_init() 初始化一個新的inotify範例,並返回一個新的inotify的事件佇列相關的檔案描述符。
返回值
On success, inotify_init() returns a new file descriptor, or -1 if an error occurred (in which case, errno is set appropriately).
錯誤
標籤 |
描述 |
EMFILE |
The user limit on the total number of inotify instances has been reached. |
ENFILE |
The system limit on the total number of file descriptors has been reached. |
ENOMEM |
Insufficient kernel memory is available. |
歷史
Inotify was merged into the 2.6.13 Linux kernel.
遵循於
This system call is Linux specific.
另請參閱