summaryrefslogtreecommitdiffstats
path: root/fastos/src/tests/thread_sleep_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'fastos/src/tests/thread_sleep_test.cpp')
-rw-r--r--fastos/src/tests/thread_sleep_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/fastos/src/tests/thread_sleep_test.cpp b/fastos/src/tests/thread_sleep_test.cpp
index 914438cdd83..7fd3412b7c3 100644
--- a/fastos/src/tests/thread_sleep_test.cpp
+++ b/fastos/src/tests/thread_sleep_test.cpp
@@ -14,9 +14,9 @@ class Thread_Sleep_Test : public ThreadTestBase
FastOS_ThreadPool *pool = new FastOS_ThreadPool(128*1024);
- if(Progress(pool != NULL, "Allocating ThreadPool"))
+ if(Progress(pool != nullptr, "Allocating ThreadPool"))
{
- bool rc = (NULL != pool->NewThread(this, NULL));
+ bool rc = (nullptr != pool->NewThread(this, nullptr));
Progress(rc, "Creating Thread");
Progress(true, "Sleeping 3 seconds");
@@ -47,6 +47,6 @@ int Thread_Sleep_Test::Main ()
int main (int argc, char **argv)
{
Thread_Sleep_Test app;
- setvbuf(stdout, NULL, _IOLBF, 8192);
+ setvbuf(stdout, nullptr, _IOLBF, 8192);
return app.Entry(argc, argv);
}