projects
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fa63753
)
include: kernel.h: define SSIZE_MAX
author
Heinrich Schuchardt
<xypron.glpk@gmx.de>
Sun, 23 Aug 2020 07:54:44 +0000
(09:54 +0200)
committer
Heinrich Schuchardt
<xypron.glpk@gmx.de>
Mon, 24 Aug 2020 14:37:53 +0000
(16:37 +0200)
Define SSIZE_MAX, the largest value fitting into a variable of type
ssize_t.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
include/linux/kernel.h
patch
|
blob
|
history
diff --git
a/include/linux/kernel.h
b/include/linux/kernel.h
index
b88c210
..
3e71d61
100644
(file)
--- a/
include/linux/kernel.h
+++ b/
include/linux/kernel.h
@@
-19,6
+19,9
@@
#ifndef SIZE_MAX
#define SIZE_MAX (~(size_t)0)
#endif
+#ifndef SSIZE_MAX
+#define SSIZE_MAX ((ssize_t)(SIZE_MAX >> 1))
+#endif
#define U8_MAX ((u8)~0U)
#define S8_MAX ((s8)(U8_MAX>>1))