zephyr/lib/posix
Yong Cong Sin 43123e77c0 posix: signal: extend strsignal buf to cover entire INT range
extends the char buffer in the strsignal function to cover the
entire range of `int`

Had to use `-INT_MAX` as the compiler resolves

```
STRINGIFY(INT_MIN)
```

to:

```
(-2147483647 - 1)
```

instead of:

```
-2147483648
```

Signed-off-by: Yong Cong Sin <ycsin@meta.com>
2023-08-04 15:54:18 -04:00
..
getopt
CMakeLists.txt posix: signal: implement strsignal 2023-07-18 15:35:42 -04:00
Kconfig posix: signal: check RTSIG limit 2023-07-18 15:35:42 -04:00
Kconfig.barrier
Kconfig.clock
Kconfig.cond
Kconfig.eventfd
Kconfig.fnmatch
Kconfig.fs
Kconfig.getopt
Kconfig.key
Kconfig.limits posix: signal: check RTSIG limit 2023-07-18 15:35:42 -04:00
Kconfig.mqueue
Kconfig.mutex
Kconfig.pthread pthread: facilitate dynamically allocated thread stacks 2023-07-24 12:59:43 -04:00
Kconfig.semaphore
Kconfig.signal posix: signal: implement strsignal 2023-07-18 15:35:42 -04:00
Kconfig.spinlock
Kconfig.template.pooled_ipc_type
Kconfig.template.pooled_type
Kconfig.template.with_url
Kconfig.timer
Kconfig.uname
_common.c
barrier.c
clock.c
cond.c
eventfd.c posix: eventfd: remove redundant conditional 2023-07-21 06:33:19 -04:00
fnmatch.c
fs.c
key.c
mqueue.c
mutex.c posix: mutex: return ETIMEDOUT from pthread_mutex_timedlock() 2023-08-02 12:04:34 -04:00
nanosleep.c
perror.c
posix_internal.h pthread: facilitate dynamically allocated thread stacks 2023-07-24 12:59:43 -04:00
pthread.c posix: pthread: thread return value not set by pthread_join() 2023-07-30 19:17:49 -04:00
pthread_sched.h
rwlock.c lib: posix: pthread_rwlock: Fix a racy issue 2023-07-12 09:25:26 +02:00
sched.c
semaphore.c
signal.c posix: signal: extend strsignal buf to cover entire INT range 2023-08-04 15:54:18 -04:00
sleep.c
spinlock.c
timer.c
uname.c