Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Side by Side Diff: native_client_sdk/src/libraries/pthread/pthread.h

Issue 10815039: Make use of -lppapi explicit to allow for correct library order. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5
6 #ifndef LIBRARIES_PTHREAD_PTHREAD_H_
7 #define LIBRARIES_PTHREAD_PTHREAD_H_
8
9 /**
10 * Implementation of pthread.h for building the SDK natively Windows.
binji 2012/07/23 18:47:14 natively on Windows
noelallen1 2012/07/23 21:44:54 Done.
11 */
12
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16
17 typedef int pthread_mutex_t;
18
19 int pthread_mutex_init(pthread_mutex_t* m, void* traits);
20 int pthread_mutex_destroy(pthread_mutex_t* m);
21
22 int pthread_mutex_lock(pthread_mutex_t* m);
23 int pthread_mutex_unlock(pthread_mutex_t* m);
24
25 #ifdef __cplusplus
26 }
27 #endif
28
29 #endif /* LIBRARIES_PTHREAD_PTHREAD_H_ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698