Displaying 7 results from an estimated 7 matches for "signal_name".
Did you mean:
signal_names
2020 Mar 28
0
[klibc:master] dash: README.dash: List the changes from upstream
...c3d4eab.
+Several changes have been made for klibc:
+
+* The build system is changed from autotools to kbuild, with a static config.h
+* Use of strtod() is guarded by HAVE_STRTOD, which we don't define
+* The built-in times command, which requires floating-point support, is
+ disabled
+* The signal_names[] array is replaced by a signal_name() function using
+ klibc's own signal name array. decode_signal() is changed similarly.
+* The read built-in implements the -t option like bash
+* mktokens is modified to support out-of-tree builds
+* mkbuiltins is modified to sort with LC_ALL=C
+* Some h...
2020 Mar 28
0
[klibc:update-dash] dash: Change mktokens back to creating token.h itself
...rctree)/$(src)/mktokens)
$(obj)/token.h: $(src)/mktokens
$(call if_changed,mktokens)
diff --git a/usr/dash/README.dash b/usr/dash/README.dash
index e33335a5..f45d28be 100644
--- a/usr/dash/README.dash
+++ b/usr/dash/README.dash
@@ -14,7 +14,6 @@ Several changes have been made for klibc:
* The signal_names[] array is replaced by a signal_name() function using
klibc's own signal name array. decode_signal() is changed similarly.
* The read built-in implements the -t option like bash
-* mktokens is modified to support out-of-tree builds
* Some header files have header guards added
* Changelo...
2023 Mar 15
4
[libnbd PATCH v4 0/3] lib/utils: add async-signal-safe assert()
This is version 4 of the following sub-series:
[libnbd PATCH v3 06/29] lib/utils: introduce xwrite() as a more robust write()
[libnbd PATCH v3 07/29] lib/utils: add async-signal-safe assert()
[libnbd PATCH v3 08/29] lib/utils: add unit test for async-signal-safe assert()
http://mid.mail-archive.com/20230215141158.2426855-7-lersek at redhat.com
2007 Jan 24
2
[LLVMdev] patch - update libiberty/psignal to latest prototypes.
...==================================================================
--- libiberty/strsignal.c (revision 254)
+++ libiberty/strsignal.c (working copy)
@@ -557,8 +557,8 @@
void
psignal (signo, message)
- unsigned signo;
- char *message;
+ int signo;
+ const char *message;
{
if (signal_names == NULL)
{
--
cheers
Ramana
Ramana Radhakrishnan
GNU Tools
Celunite Inc (www.celunite.com)
2005 Dec 28
1
Problems with klibc 1.1.8
...;SIGRTMIN' undeclared (first use in this
function)
dash/trap.c:398: error: (Each undeclared identifier is reported only
once
dash/trap.c:398: error: for each function it appears in.)
dash/trap.c:399: error: 'SIGRTMAX' undeclared (first use in this
function)
dash/trap.c: In function 'signal_name':
dash/trap.c:428: error: 'SIGRTMIN' undeclared (first use in this
function)
dash/trap.c:428: error: 'SIGRTMAX' undeclared (first use in this
function)
dash/trap.c:429: warning: implicit declaration of function 'snprintf'
dash/trap.c:429: warning: incompatible implicit d...
2003 May 14
0
System totally borked after installworld and mergemaster at 16:20:03 MSK
...rror: word unexpected (expecting ")")
> # uname -a
> FreeBSD 4.8-STABLE FreeBSD 4.8-STABLE #49: Wed May 14 16:25:03 MSD 2003 \
> goshik@goshik.binep.ac.ru:/usr/obj/usr/src/sys/GO i386
> # ps
> /bin/ps: Exec format error. Wrong Architecture.
> # pwd
> usage: kill [-s signal_name] pid ...
> kill -l [exit_status]
> kill -signal_name pid ...
> kill -signal_number pid ...
Huh?!!
> # exit
> exit
> > exit
> exit
>
> Script done on Wed May 14 18:06:41 2003
Attempt to run buildworld:
> Script started on Wed May 14 18:13:32...
2020 Mar 28
0
[klibc:update-dash] dash: eval: Add vfork support
.../usr/dash/trap.h
index a095b0e1..bbff1842 100644
--- a/usr/dash/trap.h
+++ b/usr/dash/trap.h
@@ -50,6 +50,7 @@ void dotrap(void);
void setinteractive(int);
void exitshell(void) __attribute__((__noreturn__));
int decode_signal(const char *, int);
+void sigblockall(sigset_t *oldmask);
const char *signal_name(int);
static inline int have_traps(void)