~ubuntu-branches/ubuntu/precise/nspr/precise-proposed

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/pr/tests/prpoll.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:
49
49
#include "prprf.h"
50
50
#include "prnetdb.h"
51
51
 
52
 
#ifndef XP_MAC
53
52
#include "private/pprio.h"
54
 
#else
55
 
#include "pprio.h"
56
 
#endif
57
53
 
58
54
#define CLIENT_LOOPS    5
59
55
#define BUF_SIZE                128
62
58
#include <string.h>
63
59
#include <stdlib.h>
64
60
 
 
61
#ifdef WINCE
 
62
 
 
63
int main(int argc, char **argv)
 
64
{
 
65
    fprintf(stderr, "Invalid/Broken Test for WinCE/WinMobile\n");
 
66
    exit(1);
 
67
}
 
68
 
 
69
#else
 
70
 
65
71
static void
66
72
clientThreadFunc(void *arg)
67
73
{
372
378
    PR_Cleanup();
373
379
    return 0;
374
380
}
 
381
 
 
382
 
 
383
#endif   /* ifdef WINCE */