~ubuntu-branches/ubuntu/gutsy/audacity/gutsy-backports

« back to all changes in this revision

Viewing changes to lib-src/portaudio-v19/src/os/unix/pa_unix_util.h

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-18 21:58:19 UTC
  • mfrom: (13.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080218215819-tmbcf1rx238r8gdv
Tags: 1.3.4-1.1ubuntu1~gutsy1
Automated backport upload; no source changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * $Id: pa_unix_util.h,v 1.2 2006/09/23 18:42:51 llucius Exp $
 
2
 * $Id: pa_unix_util.h,v 1.5 2007/08/16 20:45:37 richardash1981 Exp $
3
3
 * Portable Audio I/O Library
4
4
 * UNIX platform-specific support functions
5
5
 *
187
187
 * @param threadFunc: The function to be executed in the child thread.
188
188
 * @param waitForChild: If not 0, wait for child thread to call PaUnixThread_NotifyParent. Less than 0 means
189
189
 * wait for ever, greater than 0 wait for the specified time.
 
190
 * @param rtSched: Enable realtime scheduling?
190
191
 * @return: If timed out waiting on child, paTimedOut.
191
192
 */
192
 
PaError PaUnixThread_New( PaUnixThread* self, void* (*threadFunc)( void* ), void* threadArg, PaTime waitForChild );
 
193
PaError PaUnixThread_New( PaUnixThread* self, void* (*threadFunc)( void* ), void* threadArg, PaTime waitForChild,
 
194
        int rtSched );
193
195
 
194
196
/** Terminate thread.
195
197
 *