Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F145832195
D50880.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D50880.diff
View Options
diff --git a/sys/sys/_param.h b/sys/sys/_param.h
new file mode 100644
--- /dev/null
+++ b/sys/sys/_param.h
@@ -0,0 +1,28 @@
+/*-
+ * SPDX-License-Identifier: BSD-3-Clause
+ *
+ * Copyright (c) 1982, 1986, 1989, 1993
+ * The Regents of the University of California. All rights reserved.
+ * (c) UNIX System Laboratories, Inc.
+ */
+
+#ifndef _SYS__PARAM_H_
+#define _SYS__PARAM_H_
+
+#define NBBY 8 /* number of bits in a byte */
+#define NBPW sizeof(int) /* number of bytes per word (integer) */
+
+/*
+ * Macros for counting and rounding.
+ */
+#define nitems(x) (sizeof((x)) / sizeof((x)[0]))
+#ifndef howmany
+#define howmany(x, y) (((x)+((y)-1))/(y))
+#endif
+#define rounddown(x, y) (((x)/(y))*(y))
+#define rounddown2(x, y) __align_down(x, y) /* if y is power of two */
+#define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) /* to any y */
+#define roundup2(x, y) __align_up(x, y) /* if y is powers of two */
+#define powerof2(x) ((((x)-1)&(x))==0)
+
+#endif /* _SYS__PARAM_H_ */
diff --git a/sys/sys/param.h b/sys/sys/param.h
--- a/sys/sys/param.h
+++ b/sys/sys/param.h
@@ -38,6 +38,7 @@
#define _SYS_PARAM_H_
#include <sys/_null.h>
+#include <sys/_param.h>
#define BSD 199506 /* System version (year & month). */
#define BSD4_3 1
@@ -253,9 +254,6 @@
#define NZERO 0 /* default "nice" */
-#define NBBY 8 /* number of bits in a byte */
-#define NBPW sizeof(int) /* number of bytes per word (integer) */
-
#define CMASK 022 /* default file mask: S_IWGRP|S_IWOTH */
#define NODEV (dev_t)(-1) /* non-existent device */
@@ -319,16 +317,7 @@
#define isclr(a,i) \
((((const unsigned char *)(a))[(i)/NBBY] & (1<<((i)%NBBY))) == 0)
-/* Macros for counting and rounding. */
-#ifndef howmany
-#define howmany(x, y) (((x)+((y)-1))/(y))
-#endif
-#define nitems(x) (sizeof((x)) / sizeof((x)[0]))
-#define rounddown(x, y) (((x)/(y))*(y))
-#define rounddown2(x, y) __align_down(x, y) /* if y is power of two */
-#define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) /* to any y */
-#define roundup2(x, y) __align_up(x, y) /* if y is powers of two */
-#define powerof2(x) ((((x)-1)&(x))==0)
+/* Macros for counting and rounding provided by <sys/_param.h>. */
/* Macros for min/max. */
#define MIN(a,b) (((a)<(b))?(a):(b))
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Feb 26, 12:34 AM (7 h, 58 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
28998102
Default Alt Text
D50880.diff (2 KB)
Attached To
Mode
D50880: sys/param.h: Split some macros into new <sys/_param.h>
Attached
Detach File
Event Timeline
Log In to Comment