summaryrefslogtreecommitdiffstats
path: root/otherlibs/threads/scheduler.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/threads/scheduler.c')
-rw-r--r--otherlibs/threads/scheduler.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/otherlibs/threads/scheduler.c b/otherlibs/threads/scheduler.c
index c005970ed..be90f1972 100644
--- a/otherlibs/threads/scheduler.c
+++ b/otherlibs/threads/scheduler.c
@@ -176,9 +176,17 @@ value thread_new(clos) /* ML */
return (value) th;
}
+/* Return the thread identifier */
+
+value thread_id(th) /* ML */
+ value th;
+{
+ return ((struct thread_struct *)th)->ident;
+}
+
/* Return the current time as a floating-point number */
-double timeofday()
+static double timeofday()
{
struct timeval tv;
gettimeofday(&tv, NULL);
@@ -190,7 +198,7 @@ double timeofday()
#define FOREACH_THREAD(x) x = curr_thread; do { x = x->next;
#define END_FOREACH(x) } while (x != curr_thread)
-void schedule_thread()
+static void schedule_thread()
{
thread_t run_thread, th;
fd_set readfds, writefds;