manページ検索

phrase: max: clip:
target: order:
Results of 61 - 70 of about 432 for exit (0.009 sec.)
Man page of STRTOL 4919
STRTOL Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 strtol ... printf(stderr, "Usage: %s str [base]\n", argv[0]); exit(EXIT_FAILURE); } str = argv[1]; base = (argc > 2) ... ible errors */ if (errno != 0) { perror("strtol"); exit(EXIT_FAILURE); } if (endptr == str) { fprintf(stde ... rr, "No digits were found\n"); exit(EXIT_FAILURE); } /* If we got here, strtol() succe ... rther characters after number: \"%s\"\n", endptr); exit(EXIT_SUCCESS); } 関連項目 atof (3), atoi (3), atol ...
https://man.plustar.jp/manpage/man3/strtoll.3.html - [similar]
Man page of STRTOL 4919
STRTOL Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 strtol ... printf(stderr, "Usage: %s str [base]\n", argv[0]); exit(EXIT_FAILURE); } str = argv[1]; base = (argc > 2) ... ible errors */ if (errno != 0) { perror("strtol"); exit(EXIT_FAILURE); } if (endptr == str) { fprintf(stde ... rr, "No digits were found\n"); exit(EXIT_FAILURE); } /* If we got here, strtol() succe ... rther characters after number: \"%s\"\n", endptr); exit(EXIT_SUCCESS); } 関連項目 atof (3), atoi (3), atol ...
https://man.plustar.jp/manpage/man3/strtoq.3.html - [similar]
Man page of MEMFD_CREATE 4835
MEMFD_CREATE Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page 名前 ... clude < string.h > #include < stdio.h > #define errExit(msg) do { perror(msg); exit(EXIT_FAILURE); \ } whi ... ITE\n"); fprintf(stderr, "\t\tS - F_SEAL_SEAL\n"); exit(EXIT_FAILURE); } name = argv[1]; len = atoi(argv[2 ... _create(name, MFD_ALLOW_SEALING); if (fd == -1) errExit("memfd_create"); /* Size the file as specified on ... e command line */ if (ftruncate(fd, len) == -1) errExit("truncate"); printf("PID: %jd; fd: %d; /proc/%jd/f ...
https://man.plustar.jp/manpage/man2/memfd_create.2.html - [similar]
Man page of RECVMMSG 4835
RECVMMSG Section: Linux Programmer's Manual (2) Updated: 2020-11-01 Index JM Home Page 名前 recv ... DGRAM, 0); if (sockfd == -1) { perror("socket()"); exit(EXIT_FAILURE); } addr.sin_family = AF_INET; addr.s ... *) &addr, sizeof(addr)) == -1) { perror("bind()"); exit(EXIT_FAILURE); } memset(msgs, 0, sizeof(msgs)); fo ... imeout); if (retval == -1) { perror("recvmmsg()"); exit(EXIT_FAILURE); } printf("%d messages received\n", ... [i].msg_len] = 0; printf("%d %s", i+1, bufs[i]); } exit(EXIT_SUCCESS); } 関連項目 clock_gettime (2), recvm ...
https://man.plustar.jp/manpage/man2/recvmmsg.2.html - [similar]
Man page of SELECT_TUT 4835
SELECT_TUT Section: Linux Programmer's Manual (2) Updated: 2020-04-11 Index JM Home Page 名前 se ... K, &sigmask, NULL) == -1) { perror("sigprocmask"); exit(EXIT_FAILURE); } sa.sa_flags = 0; sa.sa_handler = ... (SIGCHLD, &sa, NULL) == -1) { perror("sigaction"); exit(EXIT_FAILURE); } sigemptyset(&empty_mask); for (;; ... " "<forward-to-port> <forward-to-ip-address>\n"); exit(EXIT_FAILURE); } signal(SIGPIPE, SIG_IGN); forward ... ]); h = listen_socket(atoi(argv[1])); if (h == -1) exit(EXIT_FAILURE); for (;;) { int ready, nfds = 0; ssi ...
https://man.plustar.jp/manpage/man2/select_tut.2.html - [similar]
Man page of DUPLOCALE 4760
DUPLOCALE Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 dup ... lude < stdlib.h > #include < locale.h > #define errExit(msg) do { perror(msg); exit(EXIT_FAILURE); \ } whi ... { fprintf(stderr, "Usage: %s string\n", argv[0]); exit(EXIT_FAILURE); } /* この一連の処理は必要である。 u ... elocale((locale_t) 0); if (loc == (locale_t) 0) errExit("uselocale"); nloc = duplocale(loc); if (nloc == ( ... locale_t) 0) errExit("duplocale"); for (char *p = argv[1]; *p; p++) put ...
https://man.plustar.jp/manpage/man3/duplocale.3.html - [similar]
Man page of PTHREAD_GETCPUCLOCKID 4760
PTHREAD_GETCPUCLOCKID Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home P ... .h > #define handle_error(msg) \ do { perror(msg); exit(EXIT_FAILURE); } while (0) #define handle_error_en ... (en, msg) \ do { errno = en; perror(msg); exit(EXIT_FAILURE); } while (0) static void * thread_st ... uclockid"); pclock("Subthread CPU time: 1 ", cid); exit(EXIT_SUCCESS); /* Terminates both threads */ } 関連 ...
https://man.plustar.jp/manpage/man3/pthread_getcpuclockid.3.html - [similar]
Man page of GETLINE 4719
GETLINE Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 getli ... { fprintf(stderr, "Usage: %s <file>\n", argv[0]); exit(EXIT_FAILURE); } stream = fopen(argv[1], "r"); if ... (stream == NULL) { perror("fopen"); exit(EXIT_FAILURE); } while ((nread = getline(&line, &l ... , nread, 1, stdout); } free(line); fclose(stream); exit(EXIT_SUCCESS); } 関連項目 read (2), fgets (3), fop ...
https://man.plustar.jp/manpage/man3/getdelim.3.html - [similar]
Man page of GETLINE 4719
GETLINE Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 getli ... { fprintf(stderr, "Usage: %s <file>\n", argv[0]); exit(EXIT_FAILURE); } stream = fopen(argv[1], "r"); if ... (stream == NULL) { perror("fopen"); exit(EXIT_FAILURE); } while ((nread = getline(&line, &l ... , nread, 1, stdout); } free(line); fclose(stream); exit(EXIT_SUCCESS); } 関連項目 read (2), fgets (3), fop ...
https://man.plustar.jp/manpage/man3/getline.3.html - [similar]
Man page of GETPWNAM 4719
GETPWNAM Section: Linux Programmer's Manual (3) Updated: 2020-11-01 Index JM Home Page 名前 getp ... fprintf(stderr, "Usage: %s username\n", argv[0]); exit(EXIT_FAILURE); } bufsize = sysconf(_SC_GETPW_R_SIZ ... loc(bufsize); if (buf == NULL) { perror("malloc"); exit(EXIT_FAILURE); } s = getpwnam_r(argv[1], &pwd, buf ... und\n"); else { errno = s; perror("getpwnam_r"); } exit(EXIT_FAILURE); } printf("Name: %s; UID: %jd\n", pw ... d.pw_gecos, (intmax_t) pwd.pw_uid); exit(EXIT_SUCCESS); } 関連項目 endpwent (3), fgetpwent ...
https://man.plustar.jp/manpage/man3/getpwnam.3.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 NEXT

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