Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Disabled use of clock_gettime, since using it requires an additional …
Browse files Browse the repository at this point in the history
…static lib.
  • Loading branch information
complexmath committed Nov 20, 2010
1 parent eec7659 commit 998739c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/sync/config.d
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ version( Posix )

void mktspec( ref timespec t, long delta = 0 )
{
static if( is( typeof( clock_gettime ) ) )
static if( false && is( typeof( clock_gettime ) ) )
{
clock_gettime( CLOCK_REALTIME, &t );
}
Expand Down

0 comments on commit 998739c

Please sign in to comment.