diff options
author | Marius Vollmer <mvo@zagadka.de> | 2002-11-03 22:09:20 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2002-11-03 22:09:20 +0000 |
commit | 3d7f708f21b109277018e776ec3754975696e390 (patch) | |
tree | 7375110d778d41e84ca356226f7a85768804f7eb /libguile/filesys.c | |
parent | 5cbed2d017e940d5ee2e625fe12d66278ae6cfb9 (diff) | |
download | guile-3d7f708f21b109277018e776ec3754975696e390.tar.gz |
* __scm.h (USE_THREADS, GUILE_ISELECT): Define when
SCM_DEBUG_DEPRECATED. Removed their use thru-out Guile.
Diffstat (limited to 'libguile/filesys.c')
-rw-r--r-- | libguile/filesys.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libguile/filesys.c b/libguile/filesys.c index b1c757725..7248bbe9f 100644 --- a/libguile/filesys.c +++ b/libguile/filesys.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996,1997,1998,1999,2000,2001 Free Software Foundation, Inc. +/* Copyright (C) 1996,1997,1998,1999,2000,2001, 2002 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -1230,14 +1230,9 @@ SCM_DEFINE (scm_select, "select", 3, 2, 0, } { -#ifdef GUILE_ISELECT int rv = scm_internal_select (max_fd + 1, &read_set, &write_set, &except_set, time_ptr); -#else - int rv = select (max_fd + 1, - &read_set, &write_set, &except_set, time_ptr); -#endif if (rv < 0) SCM_SYSERROR; } |