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

Commit

Permalink
Adjusting deprecation dates for a July release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdavis committed Jul 4, 2011
1 parent d9d340b commit ae61a35
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/core/sync/condition.d
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ class Condition


/**
* $(RED Scheduled for deprecation in December 2011. Please use the version
* $(RED Scheduled for deprecation in January 2012. Please use the version
* which takes a $(D Duration) instead.)
*
* Suspends the calling thread until a notification occurs or until the
Expand Down
2 changes: 1 addition & 1 deletion src/core/sync/semaphore.d
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ class Semaphore


/**
* $(RED Scheduled for deprecation in December 2011. Please use the version
* $(RED Scheduled for deprecation in January 2012. Please use the version
* which takes a $(D Duration) instead.)
*
* Suspends the calling thread until the current count moves above zero or
Expand Down
8 changes: 4 additions & 4 deletions src/core/thread.d
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ version( Windows )
last.next = t;
}
}

version( D_InlineAsm_X86 )
{
asm { fninit; }
Expand Down Expand Up @@ -793,7 +793,7 @@ class Thread
// starting thread. In effect, not doing the add here risks
// having thread being treated like a daemon thread.
synchronized( slock )
{
{
version( Windows )
{
m_hndl = cast(HANDLE) _beginthreadex( null, m_sz, &thread_entryPoint, cast(void*) this, 0, &m_addr );
Expand Down Expand Up @@ -1064,9 +1064,9 @@ class Thread
// Actions on Calling Thread
///////////////////////////////////////////////////////////////////////////


/**
* $(RED Scheduled for deprecation in December 2011. Please use the version
* $(RED Scheduled for deprecation in January 2012. Please use the version
* which takes a $(D Duration) instead.)
*
* Suspends the calling thread for at least the supplied period. This may
Expand Down

0 comments on commit ae61a35

Please sign in to comment.