Results of 1 - 10 of about 123 for handle (0.002 sec.)
- Man page of OPEN_BY_HANDLE_AT 14497
- OPEN_BY_HANDLE_AT Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page
...
名前 name_to_handle_at, open_by_handle_at - パス名に対するハンドルの取 ...
de < sys/stat.h > #include < fcntl.h > int name_to_handle_at(int dirfd , const char * pathname , struct file ...
_handle * handle , int * mount_id , int flags ); int open_ ...
by_handle_at(int mount_fd , struct file_handle * handle , in ...
-
https://man.plustar.jp/manpage/man2/name_to_handle_at.2.html
- [similar]
- Man page of OPEN_BY_HANDLE_AT 14497
- OPEN_BY_HANDLE_AT Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page
...
名前 name_to_handle_at, open_by_handle_at - パス名に対するハンドルの取 ...
de < sys/stat.h > #include < fcntl.h > int name_to_handle_at(int dirfd , const char * pathname , struct file ...
_handle * handle , int * mount_id , int flags ); int open_ ...
by_handle_at(int mount_fd , struct file_handle * handle , in ...
-
https://man.plustar.jp/manpage/man2/open_by_handle_at.2.html
- [similar]
- Man page of FANOTIFY 8970
- FANOTIFY Section: Linux Programmer's Manual (7) Updated: 2020-11-01 Index JM Home Page 名前 fano
...
initialized with one of these flags will use file handles to identify filesystem objects instead of file de ...
y group that identifies filesystem objects by file handles, you should also expect to receive one or more ad ...
ader hdr; __kernel_fsid_t fsid; unsigned char file_handle[0]; }; 性能上の理由から、複数のイベントを一度の re ...
ss the group identifies filesystem objects by file handles, the value of event_len is always FAN_EVENT_METAD ...
-
https://man.plustar.jp/manpage/man7/fanotify.7.html
- [similar]
- Man page of DLOPEN 8414
- DLOPEN Section: Linux Programmer's Manual (3) Updated: 16 May 1995 Index JM Home Page 名前 dlclo
...
ag ); const char *dlerror(void); void *dlsym(void *handle , char *symbol ); int dladdr(void *address , Dl_in ...
fo *dlip ); int dlclose (void *handle ); 特殊なシンボル: _init , _fini . 説明 dlopen は ...
を返す。 dlclose はダイナミックライブラリのハンドル handle の参照カウントを 1 減らす。参照カウントが 0 になり ...
dlfcn.h > int main(int argc, char **argv) { void *handle = dlopen ("/lib/libm.so", RTLD_LAZY); double (*cos ...
-
https://man.plustar.jp/manpage/man3/dlerror.3.html
- [similar]
- Man page of DLOPEN 8414
- DLOPEN Section: Linux Programmer's Manual (3) Updated: 16 May 1995 Index JM Home Page 名前 dlclo
...
ag ); const char *dlerror(void); void *dlsym(void *handle , char *symbol ); int dladdr(void *address , Dl_in ...
fo *dlip ); int dlclose (void *handle ); 特殊なシンボル: _init , _fini . 説明 dlopen は ...
を返す。 dlclose はダイナミックライブラリのハンドル handle の参照カウントを 1 減らす。参照カウントが 0 になり ...
dlfcn.h > int main(int argc, char **argv) { void *handle = dlopen ("/lib/libm.so", RTLD_LAZY); double (*cos ...
-
https://man.plustar.jp/manpage/man3/dlsym.3.html
- [similar]
- Man page of PTHREAD_GETATTR_NP 8131
- PTHREAD_GETATTR_NP Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page
...
#include < unistd.h > #include < errno.h > #define handle_error_en(en, msg) \ do { errno = en; perror(msg); ...
_attr_getguardsize(attr, &guard_size); if (s != 0) handle_error_en(s, "pthread_attr_getguardsize"); printf(" ...
stack(attr, &stack_addr, &stack_size); if (s != 0) handle_error_en(s, "pthread_attr_getstack"); printf("%sSt ...
s = pthread_getattr_np(thread, &attr); if (s != 0) handle_error_en(s, "pthread_getattr_np"); display_stack_r ...
-
https://man.plustar.jp/manpage/man3/pthread_getattr_np.3.html
- [similar]
- Man page of PTHREAD_GETCPUCLOCKID 7575
- PTHREAD_GETCPUCLOCKID Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home P
...
#include < string.h > #include < errno.h > #define handle_error(msg) \ do { perror(msg); exit(EXIT_FAILURE); ...
} while (0) #define handle_error_en(en, msg) \ do { errno = en; perror(msg); ...
ntf("%s", msg); if (clock_gettime(cid, &ts) == -1) handle_error("clock_gettime"); printf("%4jd.%03ld\n", (in ...
te(&thread, NULL, thread_start, NULL); if (s != 0) handle_error_en(s, "pthread_create"); printf("Main thread ...
-
https://man.plustar.jp/manpage/man3/pthread_getcpuclockid.3.html
- [similar]
- Man page of FANOTIFY_INIT 7304
- FANOTIFY_INIT Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page 名前
...
ted to an event is instead substituted with a file handle. It is intended for applications that may find the ...
use of a file handle to identify an object more suitable than a file de ...
y group that identifies filesystem objects by file handles. Note that for the directory entry modification e ...
vents the reported file handle identifies the modified directory and not the crea ...
-
https://man.plustar.jp/manpage/man2/fanotify_init.2.html
- [similar]
- Man page of DLOPEN 7020
- DLOPEN Section: Linux Programmer's Manual (3) Updated: 2014-10-02 Index JM Home Page 名前 dlclos
...
nt flag ); char *dlerror(void); void *dlsym(void * handle , const char * symbol ); int dlclose(void * handle ...
close() 関数 dlclose () は動的ライブラリのハンドル handle の参照カウントを 1 減らす。参照カウントが 0 になり ...
oid * addr , Dl_info * info ); void *dlvsym(void * handle , char * symbol , char * version ); 関数 dladdr () ...
される際に自動的に呼び出される 終了ハンドラー (exit handler) を登録することができる。 歴史 dlopen インターフェ ...
-
https://man.plustar.jp/manpage/man3/dlclose.3.html
- [similar]
- Man page of DLOPEN 7020
- DLOPEN Section: Linux Programmer's Manual (3) Updated: 2014-10-02 Index JM Home Page 名前 dlclos
...
nt flag ); char *dlerror(void); void *dlsym(void * handle , const char * symbol ); int dlclose(void * handle ...
close() 関数 dlclose () は動的ライブラリのハンドル handle の参照カウントを 1 減らす。参照カウントが 0 になり ...
oid * addr , Dl_info * info ); void *dlvsym(void * handle , char * symbol , char * version ); 関数 dladdr () ...
される際に自動的に呼び出される 終了ハンドラー (exit handler) を登録することができる。 歴史 dlopen インターフェ ...
-
https://man.plustar.jp/manpage/man3/dlmopen.3.html
- [similar]