pike.git/
src/
modules/
Gz/
zlibmod.c
Branch:
Tag:
Non-build tags
All tags
No tags
1997-02-27
1997-02-27 09:10:52 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
2383028e31e96dd3d18193d90d2cd411781bce93 (
13
lines) (+
7
/-
6
)
[
Show
|
Annotate
]
Branch:
7.9
fix for threads..
Rev: src/modules/Gz/zlibmod.c:1.3
4:
||| See the files COPYING and DISCLAIMER for more information. \*/ #include "global.h"
-
RCSID("$Id: zlibmod.c,v 1.
2
1997/02/27 09:
06
:
25
hubbe Exp $");
+
RCSID("$Id: zlibmod.c,v 1.
3
1997/02/27 09:
10
:
52
hubbe Exp $");
#include "zlib_machine.h" #include "types.h"
183:
static void init_gz_deflate(struct object *o) {
-
mt_init(& THIS->
locked
);
+
mt_init(& THIS->
lock
);
MEMSET(& THIS->gz, 0, sizeof(THIS->gz)); THIS->gz.zalloc=Z_NULL; THIS->gz.zfree=Z_NULL;
206:
int tmp; if(THIS->gz.state) {
-
mt_lock(THIS->lock);
+
mt_lock(
&
THIS->lock);
inflateEnd(&THIS->gz);
-
mt_unlock(THIS->lock);
+
mt_unlock(
&
THIS->lock);
}
217:
THIS->gz.opaque=THIS; pop_n_elems(args);
-
mt_lock(THIS->lock);
+
mt_lock(
&
THIS->lock);
tmp=inflateInit(& THIS->gz);
-
mt_unlock(THIS->lock);
+
mt_unlock(
&
THIS->lock);
switch(tmp) { case Z_OK: