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

Side by Side Diff: third_party/libusb/src/libusb/os/threads_windows.h

Issue 10332075: Adding use_system_libusb option for third_party/libusb (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review changes. Created 8 years, 7 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
OLDNEW
1 /* 1 /*
2 * libusb synchronization on Microsoft Windows 2 * libusb synchronization on Microsoft Windows
3 * 3 *
4 * Copyright (C) 2010 Michael Plante <michael.plante@gmail.com> 4 * Copyright (C) 2010 Michael Plante <michael.plante@gmail.com>
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public 7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version. 9 * version 2.1 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 int usbi_cond_destroy(usbi_cond_t *cond); 77 int usbi_cond_destroy(usbi_cond_t *cond);
78 int usbi_cond_wait(usbi_cond_t *cond, usbi_mutex_t *mutex); 78 int usbi_cond_wait(usbi_cond_t *cond, usbi_mutex_t *mutex);
79 int usbi_cond_timedwait(usbi_cond_t *cond, 79 int usbi_cond_timedwait(usbi_cond_t *cond,
80 usbi_mutex_t *mutex, 80 usbi_mutex_t *mutex,
81 const struct timespec *abstime); 81 const struct timespec *abstime);
82 int usbi_cond_broadcast(usbi_cond_t *cond); 82 int usbi_cond_broadcast(usbi_cond_t *cond);
83 int usbi_cond_signal(usbi_cond_t *cond); 83 int usbi_cond_signal(usbi_cond_t *cond);
84 84
85 #endif /* LIBUSB_THREADS_WINDOWS_H */ 85 #endif /* LIBUSB_THREADS_WINDOWS_H */
86 86
OLDNEW
« no previous file with comments | « third_party/libusb/src/libusb/os/threads_posix.c ('k') | third_party/libusb/src/libusb/os/threads_windows.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698