Re: [PATCH 1/2] libc: Added implementations for sig2str/str2sig

2021-07-16 Thread Joel Sherrill
On Wed, Jul 7, 2021 at 5:46 AM Matt Joyce wrote: > > Added function implementations for sig2str() and str2sig() in libc/signal in > order > to improve POSIX compliance. > --- > newlib/libc/signal/sig2str.c | 156 +++ > 1 file changed, 156 insertions(+) > create

Re: [PATCH 1/2] libc: Added implementations for sig2str/str2sig

2021-07-07 Thread Matthew Joyce
On Wed, Jul 7, 2021 at 4:04 PM Joel Sherrill wrote: > > On Wed, Jul 7, 2021 at 5:46 AM Matt Joyce wrote: > > > > Added function implementations for sig2str() and str2sig() in libc/signal > > in order > > to improve POSIX compliance. > > --- > > newlib/libc/signal/sig2str.c | 156

Re: [PATCH 1/2] libc: Added implementations for sig2str/str2sig

2021-07-07 Thread Joel Sherrill
On Wed, Jul 7, 2021 at 5:46 AM Matt Joyce wrote: > > Added function implementations for sig2str() and str2sig() in libc/signal in > order > to improve POSIX compliance. > --- > newlib/libc/signal/sig2str.c | 156 +++ > 1 file changed, 156 insertions(+) > create

[PATCH 1/2] libc: Added implementations for sig2str/str2sig

2021-07-07 Thread Matt Joyce
Added function implementations for sig2str() and str2sig() in libc/signal in order to improve POSIX compliance. --- newlib/libc/signal/sig2str.c | 156 +++ 1 file changed, 156 insertions(+) create mode 100644 newlib/libc/signal/sig2str.c diff --git