mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-31 14:01:18 +08:00
libsupport: Add support_select_modifies_timeout
It will be used on a select() test.
This commit is contained in:
parent
2ed18c5b53
commit
5628f103f5
@ -68,6 +68,7 @@ libsupport-routines = \
|
||||
support_quote_string \
|
||||
support_record_failure \
|
||||
support_run_diff \
|
||||
support_select_modifies_timeout \
|
||||
support_set_small_thread_stack_size \
|
||||
support_shared_allocate \
|
||||
support_small_stack_thread_attribute \
|
||||
|
@ -144,6 +144,10 @@ static __inline bool support_path_support_time64 (const char *path)
|
||||
/* Return true if stat supports nanoseconds resolution. */
|
||||
extern bool support_stat_nanoseconds (const char *path);
|
||||
|
||||
/* Return true if select modify the timeout to reflect the amount of time
|
||||
no slept. */
|
||||
extern bool support_select_modifies_timeout (void);
|
||||
|
||||
__END_DECLS
|
||||
|
||||
#endif /* SUPPORT_H */
|
||||
|
29
support/support_select_modifies_timeout.c
Normal file
29
support/support_select_modifies_timeout.c
Normal file
@ -0,0 +1,29 @@
|
||||
/* Return whether select modifies the timeout.
|
||||
Copyright (C) 2021 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<https://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <support/support.h>
|
||||
|
||||
bool
|
||||
support_select_modifies_timeout (void)
|
||||
{
|
||||
#ifdef __linux__
|
||||
return true;
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user