Update contrib.
1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
15 // Part of : libc library
16 // suspends for the specified number of miroseconds.
17 // This material, including documentation and any related
18 // computer programs, is protected by copyright controlled by
19 // Nokia. All rights are reserved. Copying, including
20 // reproducing, storing, adapting or translating, any
21 // or all of this material requires the prior written consent of
22 // Nokia. This material also contains confidential
23 // information which may not be disclosed to others without the
24 // prior written consent of Nokia.
33 EXPORT_C int usleep (unsigned int microsecs)
35 // we don't allow the possibility of being woken by signals
36 User::AfterHighRes(microsecs);