diff options
author | Ron Yorston <rmy@pobox.com> | 2021-06-07 11:34:06 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2021-06-07 11:34:06 +0100 |
commit | abe872e2a0342357a5608342cb2892e94027b3e7 (patch) | |
tree | 297cdccf332fbb5e4eb31b1eac643180059f9b5f /include | |
parent | 1f33f42d7bcb019b268d938df643a7a785dc19ab (diff) | |
parent | 4d983dcddeee94892d3072e84c7c9a01d4696055 (diff) | |
download | busybox-w32-abe872e2a0342357a5608342cb2892e94027b3e7.tar.gz busybox-w32-abe872e2a0342357a5608342cb2892e94027b3e7.tar.bz2 busybox-w32-abe872e2a0342357a5608342cb2892e94027b3e7.zip |
Merge branch 'busybox' into merge
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 3b2d23df8..e80ed1e32 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -629,7 +629,7 @@ void bb_signals(int sigs, void (*f)(int)) FAST_FUNC; | |||
629 | /* Unlike signal() and bb_signals, sets handler with sigaction() | 629 | /* Unlike signal() and bb_signals, sets handler with sigaction() |
630 | * and in a way that while signal handler is run, no other signals | 630 | * and in a way that while signal handler is run, no other signals |
631 | * will be blocked; syscalls will not be restarted: */ | 631 | * will be blocked; syscalls will not be restarted: */ |
632 | void bb_signals_recursive_norestart(int sigs, void (*f)(int)) FAST_FUNC; | 632 | void bb_signals_norestart(int sigs, void (*f)(int)) FAST_FUNC; |
633 | /* syscalls like read() will be interrupted with EINTR: */ | 633 | /* syscalls like read() will be interrupted with EINTR: */ |
634 | void signal_no_SA_RESTART_empty_mask(int sig, void (*handler)(int)) FAST_FUNC; | 634 | void signal_no_SA_RESTART_empty_mask(int sig, void (*handler)(int)) FAST_FUNC; |
635 | /* syscalls like read() won't be interrupted (though select/poll will be): */ | 635 | /* syscalls like read() won't be interrupted (though select/poll will be): */ |
@@ -1817,6 +1817,7 @@ extern void print_login_issue(const char *issue_file, const char *tty) FAST_FUNC | |||
1817 | extern void print_login_prompt(void) FAST_FUNC; | 1817 | extern void print_login_prompt(void) FAST_FUNC; |
1818 | 1818 | ||
1819 | char *xmalloc_ttyname(int fd) FAST_FUNC RETURNS_MALLOC; | 1819 | char *xmalloc_ttyname(int fd) FAST_FUNC RETURNS_MALLOC; |
1820 | int is_TERM_dumb(void) FAST_FUNC; | ||
1820 | /* NB: typically you want to pass fd 0, not 1. Think 'applet | grep something' */ | 1821 | /* NB: typically you want to pass fd 0, not 1. Think 'applet | grep something' */ |
1821 | int get_terminal_width_height(int fd, unsigned *width, unsigned *height) FAST_FUNC; | 1822 | int get_terminal_width_height(int fd, unsigned *width, unsigned *height) FAST_FUNC; |
1822 | int get_terminal_width(int fd) FAST_FUNC; | 1823 | int get_terminal_width(int fd) FAST_FUNC; |