OSDN Git Service

LDP: Update original to LDP v3.79
[linuxjm/LDP_man-pages.git] / original / man3 / program_invocation_name.3
1 .\" Copyright (C) 2006 Michael Kerrisk <mtk.manpages@gmail.com>
2 .\"
3 .\" %%%LICENSE_START(PERMISSIVE_MISC)
4 .\" Permission is hereby granted, free of charge, to any person obtaining
5 .\" a copy of this software and associated documentation files (the
6 .\" "Software"), to deal in the Software without restriction, including
7 .\" without limitation the rights to use, copy, modify, merge, publish,
8 .\" distribute, sublicense, and/or sell copies of the Software, and to
9 .\" permit persons to whom the Software is furnished to do so, subject to
10 .\" the following conditions:
11 .\"
12 .\" The above copyright notice and this permission notice shall be
13 .\" included in all copies or substantial portions of the Software.
14 .\"
15 .\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 .\" EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 .\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18 .\" IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
19 .\" CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
20 .\" TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
21 .\" SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 .\" %%%LICENSE_END
23 .\"
24 .TH INVOCATION_NAME 3 2006-04-29 "GNU" "Linux Programmer's Manual"
25 .SH NAME
26 program_invocation_name, program_invocation_short_name \- \
27 obtain name used to invoke calling program
28 .SH SYNOPSIS
29 .nf
30 .BR "#define _GNU_SOURCE" "         /* See feature_test_macros(7) */"
31 .B #include <errno.h>
32
33 .BI "extern char *" program_invocation_name ;
34 .BI "extern char *" program_invocation_short_name ;
35 .fi
36 .SH DESCRIPTION
37 .I program_invocation_name
38 contains the name that was used to invoke the calling program.
39 This is the same as the value of
40 .I argv[0]
41 in
42 .IR main (),
43 with the difference that the scope of
44 .I program_invocation_name
45 is global.
46
47 .I program_invocation_short_name
48 contains the basename component of name that was used to invoke
49 the calling program.
50 That is, it is the same value as
51 .IR program_invocation_name ,
52 with all text up to and including the final slash (/), if any, removed.
53
54 These variables are automatically initialized by the glibc run-time
55 startup code.
56 .SH CONFORMING TO
57 These variables are GNU extensions, and should not be
58 used in programs intended to be portable.
59 .SH NOTES
60 The Linux-specific
61 .I /proc/[number]/cmdline
62 file provides access to similar information.
63 .SH SEE ALSO
64 .BR proc (5)
65 .SH COLOPHON
66 This page is part of release 3.79 of the Linux
67 .I man-pages
68 project.
69 A description of the project,
70 information about reporting bugs,
71 and the latest version of this page,
72 can be found at
73 \%http://www.kernel.org/doc/man\-pages/.