repo.or.cz
/
mozilla-central.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
"Automated configuration bump, release for firefox 3.0b3rc3"
[mozilla-central.git]
/
gfx
/
thebes
/
test
/
gfxTestCocoaHelper.mm
blob
d21bf8a2675a7eeedc20f25651a0fc6de847503a
1
2
#import <Cocoa/Cocoa.h>
3
4
#include "gfxTestCocoaHelper.h"
5
6
static NSAutoreleasePool *sPool = NULL;
7
8
void
9
CocoaPoolInit() {
10
if (sPool)
11
[sPool release];
12
sPool = [[NSAutoreleasePool alloc] init];
13
}
14
15
void
16
CocoaPoolRelease() {
17
[sPool release];
18
sPool = NULL;
19
}