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

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/pr/src/misc/prthinfo.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:
37
37
 
38
38
#include "prlog.h"
39
39
#include "prthread.h"
40
 
#ifdef XP_MAC
41
 
#include "pprthred.h"
42
 
#else
43
40
#include "private/pprthred.h"
44
 
#endif
45
41
#include "primpl.h"
46
42
 
47
43
PR_IMPLEMENT(PRWord *)
175
171
static PRStatus PR_CALLBACK
176
172
pr_ScanStack(PRThread* t, int i, void* arg)
177
173
{
178
 
#if defined(XP_MAC)
179
 
#pragma unused (i)
180
 
#endif
181
174
    PRScanStackData* data = (PRScanStackData*)arg;
182
175
    return PR_ThreadScanStackPointers(t, data->scanFun, data->scanClosure);
183
176
}