diff options
author | cinap_lenrek <cinap_lenrek@rei2.9hal> | 2012-01-10 17:26:31 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@rei2.9hal> | 2012-01-10 17:26:31 +0100 |
commit | 62fb4f97177d8e76f1fd49bb9d0073007b7c9bcc (patch) | |
tree | a40d70ac8dc0d968a60e28a5ff5334fb5899a4d1 /sys/src/libthread/main.c | |
parent | 76918f348fbe29f0fc3a997106c644470023532e (diff) |
libc: restoring simple sequential version of dial()
Diffstat (limited to 'sys/src/libthread/main.c')
-rw-r--r-- | sys/src/libthread/main.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/src/libthread/main.c b/sys/src/libthread/main.c index 72e3a8701..1dcd9c319 100644 --- a/sys/src/libthread/main.c +++ b/sys/src/libthread/main.c @@ -17,9 +17,6 @@ static jmp_buf _mainjmp; static void mainlauncher(void*); extern void (*_sysfatal)(char*, va_list); extern void (*__assert)(char*); -extern int (*_dial)(char*, char*, char*, int*); - -extern int _threaddial(char*, char*, char*, int*); static Proc **mainp; @@ -38,7 +35,6 @@ main(int argc, char **argv) _systhreadinit(); _qlockinit(_threadrendezvous); _sysfatal = _threadsysfatal; - _dial = _threaddial; __assert = _threadassert; notify(_threadnote); if(mainstacksize == 0) |