Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../usr/include/sys/sysconfig.h
Real path: /usr/include/sys/sysconfig.h
Zurück
/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ /* All Rights Reserved */ /* * Copyright (c) 2007, 2022, Oracle and/or its affiliates. */ #ifndef _SYS_SYSCONFIG_H #define _SYS_SYSCONFIG_H #ifdef __cplusplus extern "C" { #endif #ifdef _KERNEL extern int mach_sysconfig(int); extern long sysconfig(int); #endif /* KERNEL */ /* * cmd values for _sysconfig system call. * WARNING: This is an undocumented system call, * therefore future compatibility can not * guaranteed. */ #define UNUSED 1 #define _CONFIG_NGROUPS 2 /* # configured supplemental groups */ #define _CONFIG_CHILD_MAX 3 /* max # of processes per uid session */ #define _CONFIG_OPEN_FILES 4 /* max # of open files per process */ #define _CONFIG_POSIX_VER 5 /* POSIX version */ #define _CONFIG_PAGESIZE 6 /* system page size */ #define _CONFIG_CLK_TCK 7 /* ticks per second */ #define _CONFIG_XOPEN_VER 8 /* * NOTE: XOPEN VERSION. This is process dependent. The kernel will return * the default value, currently 3. */ #define _CONFIG_PROF_TCK 10 /* profiling ticks per second */ #define _CONFIG_NPROC_CONF 11 /* processors configured */ #define _CONFIG_NPROC_ONLN 12 /* processors online */ /* posix dot4 names */ #define _CONFIG_AIO_LISTIO_MAX 13 /* # of operation in a list I/O call */ #define _CONFIG_AIO_MAX 14 /* # of outstanding async I/O op. */ #define _CONFIG_AIO_PRIO_DELTA_MAX 15 /* amount I/O priority decrease */ #define _CONFIG_DELAYTIMER_MAX 16 /* timer timer expiration overruns */ #define _CONFIG_MQ_OPEN_MAX 17 /* # message queues open per process */ #define _CONFIG_MQ_PRIO_MAX 18 /* # of message priorities supported */ #define _CONFIG_RTSIG_MAX 19 /* # of realtime signal numbers */ #define _CONFIG_SEM_NSEMS_MAX 20 /* No. of semaphore per process */ #define _CONFIG_SEM_VALUE_MAX 21 /* max. value a semaphore may have */ #define _CONFIG_SIGQUEUE_MAX 22 /* # of pending queued signal */ #define _CONFIG_SIGRT_MIN 23 /* first highest-pri realtime signal */ #define _CONFIG_SIGRT_MAX 24 /* last realtime signal */ #define _CONFIG_TIMER_MAX 25 /* # of timers per process */ #define _CONFIG_PHYS_PAGES 26 /* phys mem installed in pages */ #define _CONFIG_AVPHYS_PAGES 27 /* available phys mem in pages */ #define _CONFIG_COHERENCY 28 /* # bytes coherency */ #define _CONFIG_SPLIT_CACHE 29 /* split i and d or not */ #define _CONFIG_ICACHESZ 30 /* icache size in bytes */ #define _CONFIG_DCACHESZ 31 /* dcache size in bytes */ #define _CONFIG_ICACHELINESZ 32 /* linesize bytes */ #define _CONFIG_DCACHELINESZ 33 /* linesize bytes */ #define _CONFIG_ICACHEBLKSZ 34 /* block size bytes */ #define _CONFIG_DCACHEBLKSZ 35 /* block size bytes */ #define _CONFIG_DCACHETBLKSZ 36 /* block size bytes when touched */ #define _CONFIG_ICACHE_ASSOC 37 /* associativity 1, 2, 3 whatever */ #define _CONFIG_DCACHE_ASSOC 38 /* associativity 1, 2, 3 whatever */ #define _CONFIG_MAXPID 42 /* highest PID available */ #define _CONFIG_STACK_PROT 43 /* default stack protection */ #define _CONFIG_NPROC_MAX 44 /* maximum # of processors possible */ #define _CONFIG_CPUID_MAX 45 /* maximum CPU id */ /* UNIX 03 names */ #define _CONFIG_SYMLOOP_MAX 46 /* maximum # of symlinks in pathname */ #define _CONFIG_EPHID_MAX 47 /* maximum ephemeral uid */ #define _CONFIG_OSM_PGSZ_MIN 48 /* minimum page size supported by OSM */ #define _CONFIG_DEVT_VERSION 49 /* version of 32-bit dev_t supported */ #define _CONFIG_OSM_VERSION 50 /* OSM implementation version */ #define _CONFIG_MRP_VERSION 51 /* MRP implementation version */ #define _CONFIG_ADI_METADATA_MAX 52 /* max metadata used by adi pages */ #define _CONFIG_AIO_VERSION 53 /* AIO implementation version */ #define _CONFIG_MEMTYPE_VERSION 54 /* memtype implementation version */ #define _CONFIG_MAX_CONCURRENCY 55 /* Total cpus available for process */ #define _CONFIG_L2CACHESZ 56 /* L2 cache size */ #define _CONFIG_L2CACHELINESZ 57 /* L2 cache line size */ #define _CONFIG_L2CACHEASSOC 58 /* L2 cache associativity */ #define _CONFIG_L3CACHESZ 59 /* L3 cache size */ #define _CONFIG_L3CACHELINESZ 60 /* L3 cache line size */ #define _CONFIG_L3CACHEASSOC 61 /* L3 cache associativity */ #define _CONFIG_RCTL_VAL_MAX_NUM 62 /* max rctl val num per rctl */ #define _CONFIG_MC_VERSION 63 /* Memory Context API version */ #define _CONFIG_CPUID_SEQ_MAX 64 /* Highest CPU number allocated */ #define _CONFIG_FEATURE_AK 65 /* Is system a ZFSSA */ /* * For _CONFIG_* defines which are added, change _SCONFMAX to be the new * highest define and add the define to SCONFname array in truss/codes.c */ #define _SCONFMAX _CONFIG_FEATURE_AK #ifdef __cplusplus } #endif #endif /* _SYS_SYSCONFIG_H */