Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../usr/include/sys/uadmin.h
Real path: /usr/include/sys/uadmin.h
Zurück
/* * Copyright (c) 1988, 2023, Oracle and/or its affiliates. */ /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ /* All Rights Reserved */ #ifndef _SYS_UADMIN_H #define _SYS_UADMIN_H #if !defined(_ASM) #include <sys/types.h> #include <sys/cred.h> #endif #ifdef __cplusplus extern "C" { #endif #define A_REBOOT 1 #define A_SHUTDOWN 2 #define A_FREEZE 3 /* For freeze and thaw */ #define A_REMOUNT 4 #define A_DUMP 5 #define A_FTRACE 15 #define A_SWAPCTL 16 /* 17-21 reserved for obsolete interface */ #define A_SDTTEST 22 /* DTrace sdt:::test */ #define A_CONFIG 23 /* For system configuration */ #define A_BALANCE 24 /* For I/O balancer control */ #define A_KVOLCTL 25 /* For managing "system volumes" */ #define A_REBOOT_POLICY 26 #define AD_UNKNOWN -1 /* no method */ #define AD_HALT 0 /* halt the processor */ #define AD_BOOT 1 /* multi-user reboot */ #define AD_IBOOT 2 /* multi-user reboot, ask for name of file */ #define AD_SBOOT 3 /* single-user reboot */ #define AD_SIBOOT 4 /* single-user reboot, ask for name of file */ #define AD_POWEROFF 6 /* software poweroff */ #define AD_NOSYNC 7 /* do not sync filesystems on next A_DUMP */ #define AD_FASTREBOOT 8 /* bypass firmware and boot loader */ #define AD_FASTREBOOT_DRYRUN 9 /* Fast reboot Dry run */ /* * Functions reserved for A_FREEZE (may not be available on all platforms) * Note: AD_COMPRESS, AD_CHECK and AD_FORCE are now obsolete * The first two are succeeded by AD_SUSPEND and * AD_CHECK respectively. * AD_FORCE should not be used by any new application * * We maintain compatibility with the earlier interfaces: * AD_COMPRESS and AD_CHECK, by preserving those values * in the corresponding new interfaces */ #define AD_SUSPEND 0 /* CPR/Suspend */ #define AD_FORCE 1 /* force to do AD_SUSPEND - OBSOLETE */ #define AD_CHECK_SUSPEND 2 /* test if CPR/Suspend is enabled */ #define AD_COMPRESS AD_SUSPEND /* For compatibility */ #define AD_CHECK AD_CHECK_SUSPEND #define AD_SUSPEND_TO_DISK AD_SUSPEND /* A_FREEZE, CPR or ACPI S4 */ #define AD_CHECK_SUSPEND_TO_DISK AD_CHECK /* A_FREEZE, CPR/S4 capable? */ /* * Specific "Suspend to RAM" entrypoint will be removed sometime in * the future, but is retained for compatibility. */ #define AD_SUSPEND_TO_RAM 20 /* A_FREEZE, Suspend */ #define AD_CHECK_SUSPEND_TO_RAM 21 /* A_FREEZE, Suspend capable? */ /* * NOTE: the following defines comprise an Unstable interface. Their semantics * may change or they may be removed completely in a later release */ #define AD_REUSEINIT 3 /* prepare for AD_REUSABLE */ #define AD_REUSABLE 4 /* create reusable statefile */ #define AD_REUSEFINI 5 /* revert to normal CPR mode (not reusable) */ #define AD_FTRACE_START 1 #define AD_FTRACE_STOP 2 #define AD_KVOL_ATTACH 1 #define AD_KVOL_DETACH 2 #define AD_REBOOT_DISABLE 0 #define AD_REBOOT_ENABLE 1 #define AD_REBOOT_TEST 2 /* 0 if allowed ECANCELED if not */ /* * Functions of A_CONFIG. Unstable interface. */ #define AD_UPDATE_BOOT_CONFIG 1 /* Update boot config variables */ /* * When 'mdep' (the second argument to uadmin(2)) is initialized for A_REBOOT, * A_SHUTDOWN or A_DUMP, it represents the boot arguments string of at most * 4096 characters. */ #define BOOTARGS_MAX 4096 /* * Functions of A_BALANCE Private interface */ #define AD_BALANCER_STOP 0 /* disable I/O balancer operation */ #define AD_BALANCER_START 1 /* enable I/O balancer operation */ #if !defined(_KERNEL) /* * FMRI for boot-config service. */ #define FMRI_BOOT_CONFIG \ "svc:/system/boot-config:default" /* * Property group that contains all Fast Reboot configuration properties. */ #define BOOT_CONFIG_PG_PARAMS "config" /* * Property group that contains all Fast Reboot blacklisting information. */ #define BOOT_CONFIG_PG_FBBLACKLIST "fastreboot_blacklist" /* * Non-persistent property group which contains all the properties that * will override settings in the BOOT_CONFIG_PG_PARAMS property group. */ #define BOOT_CONFIG_PG_OVR "config_ovr" #endif /* _KERNEL */ /* * Flag representations of fastboot configuration. */ #define UA_FASTREBOOT_DEFAULT 0x01 #define UA_FASTREBOOT_ONPANIC 0x02 #define FASTREBOOT_DEFAULT "fastreboot_default" #define FASTREBOOT_ONPANIC "fastreboot_onpanic" #define FASTREBOOT_ONPANIC_CMDLINE "fastreboot_onpanic_cmdline" #define FASTREBOOT_ONPANIC_NOTSET(p) \ (strcmp((p), "false") == 0 || \ strcmp((p), "no") == 0 || \ strcmp((p), "0") == 0) #define FASTREBOOT_ONPANIC_ISSET(p) \ (strcmp((p), "true") == 0 || \ strcmp((p), "yes") == 0 || \ strcmp((p), "1") == 0) #if !defined(_ASM) #if defined(_KERNEL) extern kmutex_t ualock; extern void mdboot(int, int, char *, boolean_t); extern void mdpreboot(int, int, char *); extern int kadmin(int, int, void *, cred_t *); extern void killall(zoneid_t); #endif extern int uadmin(int, int, uintptr_t); #endif /* _ASM */ #ifdef __cplusplus } #endif #endif /* _SYS_UADMIN_H */