The usual files forgotten to commit. The generic system_time_nsecs()

implementation.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34545 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2009-12-07 22:53:53 +00:00
parent f4ec236cad
commit b2a2d5c065
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
/*
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
* Distributed under the terms of the MIT License.
*/
#include <OS.h>
nanotime_t
system_time_nsecs()
{
return system_time() * 1000;
}