diff options
author | Rod Evans <Rod.Evans@Sun.COM> | 2009-05-07 16:01:18 -0700 |
---|---|---|
committer | Rod Evans <Rod.Evans@Sun.COM> | 2009-05-07 16:01:18 -0700 |
commit | 2a8d6eba033e4713ab12b61178f0513f1f075482 (patch) | |
tree | 0fd82f40b89008aa56426a55126371550f5b2309 /usr/src/lib/libc/inc/libc_int.h | |
parent | c03aa62609f1d65e84421396e8ee70875fc77b30 (diff) | |
download | illumos-gate-2a8d6eba033e4713ab12b61178f0513f1f075482.tar.gz |
6806791 filter builds could be optimized
6823371 calloc() uses suboptimal memset() causing 15% regression in SpecCPU2006 gcc code
--HG--
rename : usr/src/lib/libkrb5/common/mapfile => usr/src/lib/libkrb5/common/mapfile-vers
Diffstat (limited to 'usr/src/lib/libc/inc/libc_int.h')
-rw-r--r-- | usr/src/lib/libc/inc/libc_int.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr/src/lib/libc/inc/libc_int.h b/usr/src/lib/libc/inc/libc_int.h index 3cb5be036d..940636b49c 100644 --- a/usr/src/lib/libc/inc/libc_int.h +++ b/usr/src/lib/libc/inc/libc_int.h @@ -20,15 +20,13 @@ */ /* - * Copyright 2008 Sun Microsystems, Inc. All rights reserved. + * Copyright 2009 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ #ifndef _LIBC_INT_H #define _LIBC_INT_H -#pragma ident "%Z%%M% %I% %E% SMI" - #ifdef __cplusplus extern "C" { #endif @@ -47,8 +45,9 @@ extern "C" { #define CI_TLS_MODREM 8 /* __tls_mod_remove() address */ #define CI_TLS_STATMOD 9 /* __tls_static_mods() address */ #define CI_THRINIT 10 /* libc thread initialization */ +#define CI_CRITICAL 11 /* critical level query interface */ -#define CI_MAX 11 +#define CI_MAX 12 #define CI_V_NONE 0 /* ci_version versions */ #define CI_V_ONE 1 /* original version */ @@ -56,8 +55,9 @@ extern "C" { #define CI_V_THREE 3 #define CI_V_FOUR 4 #define CI_V_FIVE 5 -#define CI_V_CURRENT CI_V_FIVE /* current version of libc interface */ -#define CI_V_NUM 6 /* number of CI_V_* numbers */ +#define CI_V_SIX 6 +#define CI_V_CURRENT CI_V_SIX /* current version of libc interface */ +#define CI_V_NUM 7 /* number of CI_V_* numbers */ /* * Flags for the bindguard routines. |