From 64f05a48b2b1bfa992b62b5512822786b6a770f6 Mon Sep 17 00:00:00 2001 From: Sam Hartman Date: Sat, 10 Jan 2004 20:52:48 +0000 Subject: [PATCH] Initial revision --- src/afs/sysctl.h | 60 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 src/afs/sysctl.h diff --git a/src/afs/sysctl.h b/src/afs/sysctl.h new file mode 100644 index 000000000..5af1e2f86 --- /dev/null +++ b/src/afs/sysctl.h @@ -0,0 +1,60 @@ +/* + * Copyright (c) 2003 Apple Computer, Inc. All rights reserved. + * + * @APPLE_LICENSE_HEADER_START@ + * + * This file contains Original Code and/or Modifications of Original Code + * as defined in and that are subject to the Apple Public Source License + * Version 2.0 (the 'License'). You may not use this file except in + * compliance with the License. Please obtain a copy of the License at + * http://www.opensource.apple.com/apsl/ and read it before using this + * file. + * + * The Original Code and all software distributed under the License are + * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER + * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, + * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. + * Please see the License for the specific language governing rights and + * limitations under the License. + * + * @APPLE_LICENSE_HEADER_END@ + */ + +#ifndef AFS_SYSCTL_H +#define AFS_SYSCTL_H + +/* top level AFS names */ +#define AFS_SC_ALL 0 +#define AFS_SC_DARWIN 1 + +/* AFS_SC_ALL: platform-independent sysctls */ + /* nothing defined */ + +/* AFS_SC_DARWIN: darwin-specific sysctls */ +#define AFS_SC_DARWIN_ALL 0 +#define AFS_SC_DARWIN_12 1 +#define AFS_SC_DARWIN_13 2 +#define AFS_SC_DARWIN_14 3 +#define AFS_SC_DARWIN_60 4 +#define AFS_SC_DARWIN_70 5 + +/* AFS_SC_DARWIN_ALL: darwin version-independent sysctls */ +#define AFS_SC_DARWIN_ALL_REALMODES 1 + +/* AFS_SC_DARWIN_12: darwin 1.2 sysctls */ + /* nothing defined */ + +/* AFS_SC_DARWIN_13: darwin 1.3 sysctls */ + /* nothing defined */ + +/* AFS_SC_DARWIN_14: darwin 1.4 sysctls */ + /* nothing defined */ + +/* AFS_SC_DARWIN_60: darwin 6.x sysctls */ + /* nothing defined */ + +/* AFS_SC_DARWIN_70: darwin 7.x sysctls */ + /* nothing defined */ + +#endif /* AFS_SYSCTL_H */ -- 2.39.5