From 602776c885fc4ed5c89eed30be55666bb4b9743a Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Fri, 25 Sep 2009 18:08:00 -0500 Subject: [PATCH] vm: clean up os-unix.cpp --- vm/os-unix.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/vm/os-unix.cpp b/vm/os-unix.cpp index e9e26240cd..bd8f33aac2 100644 --- a/vm/os-unix.cpp +++ b/vm/os-unix.cpp @@ -21,9 +21,8 @@ pthread_key_t tlsKey = 0; void init_platform_globals() { - if (pthread_key_create(&tlsKey, NULL) != 0){ + if (pthread_key_create(&tlsKey, NULL) != 0) fatal_error("pthread_key_create() failed",0); - } } @@ -75,8 +74,6 @@ void factor_vm::ffi_dlclose(dll *dll) dll->dll = NULL; } - - inline void factor_vm::primitive_existsp() { struct stat sb;