manページ検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 432 for exit (0.003 sec.)
Man page of EXIT_GROUP 6314
EXIT_GROUP Section: Linux Programmer's Manual (2) Updated: 2008-11-27 Index JM Home Page 名前 exit ... it_group - プロセス中の全てのスレッドを exit させる 書式 #include < linux/unistd.h > void exit_ ... int status ); 説明 このシステムコールは、基本的に _exit (2) と等しいが、 呼び出し元のスレッドだけでなく、呼 ... ールは Linux 固有である。 注意 glibc 2.3 以降では、 _exit (2) のラッパー関数が呼び出された際に、 このシステム ... コールが起動される。 関連項目 exit (2) この文書について この man ページは Linux man-p ...
https://man.plustar.jp/manpage/man2/exit_group.2.html - [similar]
Man page of MBSTOWCS 6147
MBSTOWCS Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 mbst ... stderr, "Usage: %s <locale> <string>\n", argv[0]); exit(EXIT_FAILURE); } /* Apply the specified locale */ ... e(LC_ALL, argv[1]) == NULL) { perror("setlocale"); exit(EXIT_FAILURE); } /* Calculate the length required ... ; if (mbslen == (size_t) -1) { perror("mbstowcs"); exit(EXIT_FAILURE); } /* Describe the source string to ... izeof(*wcs)); if (wcs == NULL) { perror("calloc"); exit(EXIT_FAILURE); } /* Convert the multibyte characte ...
https://man.plustar.jp/manpage/man3/mbstowcs.3.html - [similar]
Man page of UNIX 5779
UNIX Section: Linux Programmer's Manual (7) Updated: 2020-11-01 Index JM Home Page 名前 unix - ロ ... e client's integers. The client prints the sum and exits. The server waits for the next client to connect. ... ; if (connection_socket == -1) { perror("socket"); exit(EXIT_FAILURE); } /* * For portability clear the wh ... e, sizeof(name)); if (ret == -1) { perror("bind"); exit(EXIT_FAILURE); } /* * Prepare for accepting connec ... on_socket, 20); if (ret == -1) { perror("listen"); exit(EXIT_FAILURE); } /* This is the main loop for hand ...
https://man.plustar.jp/manpage/man7/unix.7.html - [similar]
Man page of GETGROUPLIST 5696
GETGROUPLIST Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 ... (stderr, "Usage: %s <user> <ngroups>\n", argv[0]); exit(EXIT_FAILURE); } ngroups = atoi(argv[2]); gid_t *g ... ngroups); if (groups == NULL) { perror("malloc"); exit(EXIT_FAILURE); } /* Fetch passwd structure (contai ... am(argv[1]); if (pw == NULL) { perror("getpwnam"); exit(EXIT_SUCCESS); } /* Retrieve group list */ if (get ... rouplist() returned -1; ngroups = %d\n", ngroups); exit(EXIT_FAILURE); } /* Display list of retrieved grou ...
https://man.plustar.jp/manpage/man3/getgrouplist.3.html - [similar]
Man page of OPEN_BY_HANDLE_AT 5654
OPEN_BY_HANDLE_AT Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page ... clude < errno.h > #include < string.h > #define errExit(msg) do { perror(msg); exit(EXIT_FAILURE); \ } whi ... fprintf(stderr, "Usage: %s pathname\n", argv[0]); exit(EXIT_FAILURE); } pathname = argv[1]; /* file_handl ... f(*fhp); fhp = malloc(fhsize); if (fhp == NULL) errExit("malloc"); /* name_to_handle_at() を最初に呼び出し ... , "Unexpected result from name_to_handle_at()\n"); exit(EXIT_FAILURE); } /* file_handle 構造体を正しいサイ ...
https://man.plustar.jp/manpage/man2/name_to_handle_at.2.html - [similar]
Man page of OPEN_BY_HANDLE_AT 5654
OPEN_BY_HANDLE_AT Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page ... clude < errno.h > #include < string.h > #define errExit(msg) do { perror(msg); exit(EXIT_FAILURE); \ } whi ... fprintf(stderr, "Usage: %s pathname\n", argv[0]); exit(EXIT_FAILURE); } pathname = argv[1]; /* file_handl ... f(*fhp); fhp = malloc(fhsize); if (fhp == NULL) errExit("malloc"); /* name_to_handle_at() を最初に呼び出し ... , "Unexpected result from name_to_handle_at()\n"); exit(EXIT_FAILURE); } /* file_handle 構造体を正しいサイ ...
https://man.plustar.jp/manpage/man2/open_by_handle_at.2.html - [similar]
Man page of GETADDRINFO_A 5654
GETADDRINFO_A Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 ... { fprintf(stderr, "Usage: %s HOST...\n", argv[0]); exit(EXIT_FAILURE); } for (int i = 0; i < argc - 1; i++ ... eqs[0])); if (reqs[i] == NULL) { perror("malloc"); exit(EXIT_FAILURE); } memset(reqs[i], 0, sizeof(*reqs[0 ... getaddrinfo_a() failed: %s\n", gai_strerror(ret)); exit(EXIT_FAILURE); } for (int i = 0; i < argc - 1; i++ ... "getnameinfo() failed: %s\n", gai_strerror(ret)); exit(EXIT_FAILURE); } puts(host); } else { puts(gai_str ...
https://man.plustar.jp/manpage/man3/gai_cancel.3.html - [similar]
Man page of GETADDRINFO_A 5654
GETADDRINFO_A Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 ... { fprintf(stderr, "Usage: %s HOST...\n", argv[0]); exit(EXIT_FAILURE); } for (int i = 0; i < argc - 1; i++ ... eqs[0])); if (reqs[i] == NULL) { perror("malloc"); exit(EXIT_FAILURE); } memset(reqs[i], 0, sizeof(*reqs[0 ... getaddrinfo_a() failed: %s\n", gai_strerror(ret)); exit(EXIT_FAILURE); } for (int i = 0; i < argc - 1; i++ ... "getnameinfo() failed: %s\n", gai_strerror(ret)); exit(EXIT_FAILURE); } puts(host); } else { puts(gai_str ...
https://man.plustar.jp/manpage/man3/gai_error.3.html - [similar]
Man page of GETADDRINFO_A 5654
GETADDRINFO_A Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 ... { fprintf(stderr, "Usage: %s HOST...\n", argv[0]); exit(EXIT_FAILURE); } for (int i = 0; i < argc - 1; i++ ... eqs[0])); if (reqs[i] == NULL) { perror("malloc"); exit(EXIT_FAILURE); } memset(reqs[i], 0, sizeof(*reqs[0 ... getaddrinfo_a() failed: %s\n", gai_strerror(ret)); exit(EXIT_FAILURE); } for (int i = 0; i < argc - 1; i++ ... "getnameinfo() failed: %s\n", gai_strerror(ret)); exit(EXIT_FAILURE); } puts(host); } else { puts(gai_str ...
https://man.plustar.jp/manpage/man3/gai_suspend.3.html - [similar]
Man page of GETADDRINFO_A 5654
GETADDRINFO_A Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 ... { fprintf(stderr, "Usage: %s HOST...\n", argv[0]); exit(EXIT_FAILURE); } for (int i = 0; i < argc - 1; i++ ... eqs[0])); if (reqs[i] == NULL) { perror("malloc"); exit(EXIT_FAILURE); } memset(reqs[i], 0, sizeof(*reqs[0 ... getaddrinfo_a() failed: %s\n", gai_strerror(ret)); exit(EXIT_FAILURE); } for (int i = 0; i < argc - 1; i++ ... "getnameinfo() failed: %s\n", gai_strerror(ret)); exit(EXIT_FAILURE); } puts(host); } else { puts(gai_str ...
https://man.plustar.jp/manpage/man3/getaddrinfo_a.3.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT

This document was created by man2html, using the manual pages.
Time: 13:30:26 GMT, January 09, 2022