2 * Copyright 2000, International Business Machines Corporation and others.
5 * This software has been released under the terms of the IBM Public
6 * License. For details, see the LICENSE file in the top-level source
7 * directory or online at http://www.openafs.org/dl/license10.html
10 #include <afsconfig.h>
11 #include <afs/param.h>
16 #include <afs/afs_args.h>
18 #include <afs/com_err.h>
20 #include <afs/venus.h>
21 #include <afs/com_err.h>
22 #include <afs/afs_consts.h>
23 #include <afs/sys_prototypes.h>
25 static char space
[AFS_PIOCTL_MAXSIZE
];
28 main(int argc
, char **argv
)
31 struct ViceIoctl blob
;
37 * The following signal action for AIX is necessary so that in case of a
38 * crash (i.e. core is generated) we can include the user's data section
39 * in the core dump. Unfortunately, by default, only a partial core is
40 * generated which, in many cases, isn't too useful.
44 sigemptyset(&nsa
.sa_mask
);
45 nsa
.sa_handler
= SIG_DFL
;
46 nsa
.sa_flags
= SA_FULLDUMP
;
47 sigaction(SIGSEGV
, &nsa
, NULL
);
52 blob
.out_size
= AFS_PIOCTL_MAXSIZE
;
53 blob
.in_size
= sizeof(afs_int32
);
54 memcpy(space
, &setp
, sizeof(afs_int32
));
55 code
= pioctl(0, VIOC_AFS_SYSNAME
, &blob
, 1);
57 fprintf(stderr
, "livesys: %s\n", afs_error_message(code
));
61 memcpy(&setp
, input
, sizeof(afs_int32
));
62 input
+= sizeof(afs_int32
);
64 fprintf(stderr
, "No sysname name value was found\n");
67 printf("%s\n", input
);