~ubuntu-branches/ubuntu/saucy/nspr/saucy-updates

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/pr/tests/priotest.c

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2009-08-10 11:34:26 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090810113426-3uv4diflrkcbdimm
Tags: 4.8-0ubuntu1
* New upstream release: 4.8 (LP: #387812)
* adjust patches to changed upstreanm codebase
  - update debian/patches/99_configure.patch
* update shlibs symbols to include new API elements
  - update debian/libnspr4-0d.symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 * Purpose:     testing priorities
41
41
 */
42
42
 
43
 
#ifdef XP_MAC
44
 
#error "This test does not run on Macintosh"
45
 
#else
46
 
 
47
 
 
48
43
#include "prcmon.h"
49
44
#include "prinit.h"
50
45
#include "prinrval.h"
160
155
        PR_LOCAL_THREAD, PR_JOINABLE_THREAD, 0);
161
156
} /* CreateThreads */
162
157
 
163
 
PRIntn main(PRIntn argc, char **argv)
 
158
int main(int argc, char **argv)
164
159
{
165
160
    PLOptStatus os;
166
161
    PRIntn duration = DEFAULT_DURATION;
228
223
 
229
224
}  /* main */
230
225
 
231
 
#endif  /* ifdef XP_MAC */
232
 
 
233
226
/* priotest.c */