From 597e700618f7e1d07dbacfb50b0b6ce871f72b22 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Sun, 4 Dec 2011 21:07:32 +0100 Subject: [PATCH] Removed outdated comment about sleep(2) and signals. --- libmaxsi/thread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmaxsi/thread.cpp b/libmaxsi/thread.cpp index 047f1f4e..31e85c7b 100644 --- a/libmaxsi/thread.cpp +++ b/libmaxsi/thread.cpp @@ -59,7 +59,7 @@ namespace Maxsi } #ifdef LIBMAXSI_LIBC - extern "C" unsigned sleep(unsigned Seconds) { SysSleep(Seconds); return 0; /* TODO: Posix mentions something about signals and whatnot. */} + extern "C" unsigned sleep(unsigned Seconds) { SysSleep(Seconds); return 0; } #endif // TODO: Thinking about it, there is no need for this to be a long.