mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
* iselect.h: #define scm_internal_select select if GUILE_ISELECT
isn't enabled. (Thought that I had made this change ages ago...)
This commit is contained in:
parent
b8ff5fe924
commit
6d8d2debd7
1 changed files with 6 additions and 0 deletions
|
@ -83,6 +83,8 @@
|
||||||
|
|
||||||
#endif /* no FD_SET */
|
#endif /* no FD_SET */
|
||||||
|
|
||||||
|
#ifdef GUILE_ISELECT
|
||||||
|
|
||||||
extern int scm_I_am_dead;
|
extern int scm_I_am_dead;
|
||||||
|
|
||||||
extern int scm_internal_select (int fds,
|
extern int scm_internal_select (int fds,
|
||||||
|
@ -93,4 +95,8 @@ extern int scm_internal_select (int fds,
|
||||||
extern void scm_error_revive_threads (void);
|
extern void scm_error_revive_threads (void);
|
||||||
extern void scm_init_iselect (void);
|
extern void scm_init_iselect (void);
|
||||||
|
|
||||||
|
#else /* GUILE_ISELECT */
|
||||||
|
#define scm_internal_select select
|
||||||
|
#endif /* GUILE_ISELECT */
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue