]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/pthread_getattr_np.3
des_crypt.3: Minor wording fix in VERSIONS
[thirdparty/man-pages.git] / man3 / pthread_getattr_np.3
index 6dde3d3c7fb6bf22884ef590d41b540a0a0bc5e9..5006dd430ebe954592c1385f135d0e21461cf3ed 100644 (file)
@@ -1,6 +1,7 @@
 .\" Copyright (c) 2008 Linux Foundation, written by Michael Kerrisk
 .\"     <mtk.manpages@gmail.com>
 .\"
+.\" %%%LICENSE_START(VERBATIM)
 .\" Permission is granted to make and distribute verbatim copies of this
 .\" manual provided the copyright notice and this permission notice are
 .\" preserved on all copies.
 .\"
 .\" Formatted or processed versions of this manual, if unaccompanied by
 .\" the source, must acknowledge the copyright and authors of this work.
+.\" %%%LICENSE_END
 .\"
-.TH PTHREAD_GETATTR_NP 3 2008-10-24 "Linux" "Linux Programmer's Manual"
+.TH PTHREAD_GETATTR_NP 3 2019-03-06 "Linux" "Linux Programmer's Manual"
 .SH NAME
 pthread_getattr_np \- get attributes of created thread
 .SH SYNOPSIS
 .nf
-.B #define _GNU_SOURCE
+.BR "#define _GNU_SOURCE" "             /* See feature_test_macros(7) */"
 .B #include <pthread.h>
-
+.PP
 .BI "int pthread_getattr_np(pthread_t " thread ", pthread_attr_t *" attr );
-.sp
+.PP
 Compile and link with \fI\-pthread\fP.
+.fi
 .SH DESCRIPTION
 The
 .BR pthread_getattr_np ()
@@ -39,7 +42,7 @@ function initializes the thread attributes object referred to by
 .I attr
 so that it contains actual attribute values describing the running thread
 .IR thread .
-
+.PP
 The returned attribute values may differ from
 the corresponding attribute values passed in the
 .I attr
@@ -54,7 +57,7 @@ the stack size,
 which the implementation may align to a suitable boundary.
 .IP *
 and the guard size,
-which the implementation may round upwards to a multiple of the page size,
+which the implementation may round upward to a multiple of the page size,
 or ignore (i.e., treat as 0),
 if the application is allocating its own stack.
 .PP
@@ -62,14 +65,14 @@ Furthermore, if the stack address attribute was not set
 in the thread attributes object used to create the thread,
 then the returned thread attributes object will report the actual
 stack address that the implementation selected for the thread.
-
+.PP
 When the thread attributes object returned by
 .BR pthread_getattr_np ()
 is no longer required, it should be destroyed using
 .BR pthread_attr_destroy (3).
 .SH RETURN VALUE
 On success, this function returns 0;
-on error, it returns a non-zero error number.
+on error, it returns a nonzero error number.
 .SH ERRORS
 .TP
 .B ENOMEM
@@ -80,7 +83,7 @@ In addition, if
 .I thread
 refers to the main thread, then
 .BR pthread_getattr_np ()
-may fail because of errors from various underlying calls:
+can fail because of errors from various underlying calls:
 .BR fopen (3),
 if
 .IR /proc/self/maps
@@ -92,8 +95,23 @@ if the
 resource limit is not supported.
 .SH VERSIONS
 This function is available in glibc since version 2.2.3.
+.SH ATTRIBUTES
+For an explanation of the terms used in this section, see
+.BR attributes (7).
+.ad l
+.TS
+allbox;
+lbw20 lb lb
+l l l.
+Interface      Attribute       Value
+T{
+.BR pthread_getattr_np ()
+T}     Thread safety   MT-Safe
+.TE
+.ad
 .SH CONFORMING TO
-This function is a non-standard GNU extension.
+This function is a nonstandard GNU extension;
+hence the suffix "_np" (nonportable) in the name.
 .SH EXAMPLE
 The program below demonstrates the use of
 .BR pthread_getattr_np ().
@@ -104,28 +122,28 @@ and stack size attributes.
 Command-line arguments can be used to set these attributes
 to values other than the default when creating the thread.
 The shell sessions below demonstrate the use of the program.
-
+.PP
 In the first run, on an x86-32 system,
 a thread is created using default attributes:
-
+.PP
 .in +4n
-.nf
-.RB "$" " ulimit \-s" "      # No stack imit ==> default stack size is 2MB"
+.EX
+.RB "$" " ulimit \-s" "      # No stack limit ==> default stack size is 2 MB"
 unlimited
 .RB "$" " ./a.out"
 Attributes of created thread:
         Guard size          = 4096 bytes
         Stack address       = 0x40196000 (EOS = 0x40397000)
         Stack size          = 0x201000 (2101248) bytes
-.fi
+.EE
 .in
-
+.PP
 In the following run, we see that if a guard size is specified,
 it is rounded up to the next multiple of the system page size
 (4096 bytes on x86-32):
-
+.PP
 .in +4n
-.nf
+.EX
 .RB "$" " ./a.out \-g 4097"
 Thread attributes object after initializations:
         Guard size          = 4097 bytes
@@ -136,7 +154,7 @@ Attributes of created thread:
         Guard size          = 8192 bytes
         Stack address       = 0x40196000 (EOS = 0x40397000)
         Stack size          = 0x201000 (2101248) bytes
-.fi
+.EE
 .in
 .\".in +4n
 .\".nf
@@ -152,12 +170,12 @@ Attributes of created thread:
 .\"        Stack size          = 0x8000 (32768) bytes
 .\".fi
 .\".in
-
+.PP
 In the last run, the program manually allocates a stack for the thread.
 In this case, the guard size attribute is ignored.
-
+.PP
 .in +4n
-.nf
+.EX
 .RB "$" " ./a.out \-g 4096 \-s 0x8000 \-a"
 Allocated thread stack at 0x804d000
 
@@ -170,11 +188,11 @@ Attributes of created thread:
         Guard size          = 0 bytes
         Stack address       = 0x804d000 (EOS = 0x8055000)
         Stack size          = 0x8000 (32768) bytes
-.fi
+.EE
 .in
 .SS Program source
 \&
-.nf
+.EX
 #define _GNU_SOURCE     /* To get pthread_getattr_np() declaration */
 #include <pthread.h>
 #include <stdio.h>
@@ -182,8 +200,8 @@ Attributes of created thread:
 #include <unistd.h>
 #include <errno.h>
 
-#define errExitEN(en, msg)      { errno = en; perror(msg); \\
-                                  exit(EXIT_FAILURE); }
+#define handle_error_en(en, msg) \e
+        do { errno = en; perror(msg); exit(EXIT_FAILURE); } while (0)
 
 static void
 display_stack_related_attributes(pthread_attr_t *attr, char *prefix)
@@ -194,17 +212,17 @@ display_stack_related_attributes(pthread_attr_t *attr, char *prefix)
 
     s = pthread_attr_getguardsize(attr, &guard_size);
     if (s != 0)
-        errExitEN(s, "pthread_attr_getguardsize");
-    printf("%sGuard size          = %d bytes\\n", prefix, guard_size);
+        handle_error_en(s, "pthread_attr_getguardsize");
+    printf("%sGuard size          = %d bytes\en", prefix, guard_size);
 
     s = pthread_attr_getstack(attr, &stack_addr, &stack_size);
     if (s != 0)
-        errExitEN(s, "pthread_attr_getstack");
+        handle_error_en(s, "pthread_attr_getstack");
     printf("%sStack address       = %p", prefix, stack_addr);
     if (stack_size > 0)
         printf(" (EOS = %p)", (char *) stack_addr + stack_size);
-    printf("\\n");
-    printf("%sStack size          = 0x%x (%d) bytes\\n",
+    printf("\en");
+    printf("%sStack size          = 0x%x (%d) bytes\en",
             prefix, stack_size, stack_size);
 }
 
@@ -216,20 +234,20 @@ display_thread_attributes(pthread_t thread, char *prefix)
 
     s = pthread_getattr_np(thread, &attr);
     if (s != 0)
-        errExitEN(s, "pthread_getattr_np");
+        handle_error_en(s, "pthread_getattr_np");
 
     display_stack_related_attributes(&attr, prefix);
 
     s = pthread_attr_destroy(&attr);
     if (s != 0)
-        errExitEN(s, "pthread_attr_destroy");
+        handle_error_en(s, "pthread_attr_destroy");
 }
 
 static void *           /* Start function for thread we create */
 thread_start(void *arg)
 {
-    printf("Attributes of created thread:\\n");
-    display_thread_attributes(pthread_self(), "\\t");
+    printf("Attributes of created thread:\en");
+    display_thread_attributes(pthread_self(), "\et");
 
     exit(EXIT_SUCCESS);         /* Terminate all threads */
 }
@@ -239,9 +257,9 @@ usage(char *pname, char *msg)
 {
     if (msg != NULL)
         fputs(msg, stderr);
-    fprintf(stderr, "Usage: %s [\-s stack-size [-a]]"
-            " [\-g guard-size]\\n", pname);
-    fprintf(stderr, "\\t\\t\-a means program should allocate stack\\n");
+    fprintf(stderr, "Usage: %s [\-s stack\-size [\-a]]"
+            " [\-g guard\-size]\en", pname);
+    fprintf(stderr, "\et\et\-a means program should allocate stack\en");
     exit(EXIT_FAILURE);
 }
 
@@ -260,49 +278,49 @@ get_thread_attributes_from_cl(int argc, char *argv[],
 
     while ((opt = getopt(argc, argv, "ag:s:")) != \-1) {
         switch (opt) {
-        case \(aqa':   allocate_stack = 1;                     break;
-        case \(aqg':   guard_size = strtoul(optarg, NULL, 0);  break;
-        case \(aqs':   stack_size = strtoul(optarg, NULL, 0);  break;
+        case \(aqa\(aq:   allocate_stack = 1;                     break;
+        case \(aqg\(aq:   guard_size = strtoul(optarg, NULL, 0);  break;
+        case \(aqs\(aq:   stack_size = strtoul(optarg, NULL, 0);  break;
         default:    usage(argv[0], NULL);
         }
     }
 
     if (allocate_stack && stack_size == \-1)
-        usage(argv[0], "Specifying \-a without -s makes no sense\\n");
+        usage(argv[0], "Specifying \-a without \-s makes no sense\en");
 
     if (argc > optind)
-        usage(argv[0], "Extraneous command\-line arguments\\n");
+        usage(argv[0], "Extraneous command\-line arguments\en");
 
     if (stack_size >= 0 || guard_size > 0) {
         ret_attrp = attrp;
 
         s = pthread_attr_init(attrp);
         if (s != 0)
-            errExitEN(s, "pthread_attr_init");
+            handle_error_en(s, "pthread_attr_init");
     }
 
     if (stack_size >= 0) {
         if (!allocate_stack) {
             s = pthread_attr_setstacksize(attrp, stack_size);
             if (s != 0)
-                errExitEN(s, "pthread_attr_setstacksize");
+                handle_error_en(s, "pthread_attr_setstacksize");
         } else {
             s = posix_memalign(&stack_addr, sysconf(_SC_PAGESIZE),
                                stack_size);
             if (s != 0)
-                errExitEN(s, "posix_memalign");
-            printf("Allocated thread stack at %p\\n\\n", stack_addr);
+                handle_error_en(s, "posix_memalign");
+            printf("Allocated thread stack at %p\en\en", stack_addr);
 
             s = pthread_attr_setstack(attrp, stack_addr, stack_size);
             if (s != 0)
-                errExitEN(s, "pthread_attr_setstacksize");
+                handle_error_en(s, "pthread_attr_setstacksize");
         }
     }
 
     if (guard_size >= 0) {
         s = pthread_attr_setguardsize(attrp, guard_size);
         if (s != 0)
-            errExitEN(s, "pthread_attr_setstacksize");
+            handle_error_en(s, "pthread_attr_setstacksize");
     }
 
     return ret_attrp;
@@ -320,25 +338,27 @@ main(int argc, char *argv[])
     attrp = get_thread_attributes_from_cl(argc, argv, &attr);
 
     if (attrp != NULL) {
-        printf("Thread attributes object after initializations:\\n");
-        display_stack_related_attributes(attrp, "\\t");
-        printf("\\n");
+        printf("Thread attributes object after initializations:\en");
+        display_stack_related_attributes(attrp, "\et");
+        printf("\en");
     }
 
     s = pthread_create(&thr, attrp, &thread_start, NULL);
     if (s != 0)
-        errExitEN(s, "pthread_create");
+        handle_error_en(s, "pthread_create");
 
     if (attrp != NULL) {
         s = pthread_attr_destroy(attrp);
         if (s != 0)
-            errExitEN(s, "pthread_attr_destroy");
+            handle_error_en(s, "pthread_attr_destroy");
     }
 
     pause();    /* Terminates when other thread calls exit() */
 }
-.fi
+.EE
 .SH SEE ALSO
+.ad l
+.nh
 .BR pthread_attr_getaffinity_np (3),
 .BR pthread_attr_getdetachstate (3),
 .BR pthread_attr_getguardsize (3),