ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/cfperl.h
(Generate patch)

Comparing deliantra/server/include/cfperl.h (file contents):
Revision 1.99 by root, Mon Sep 8 11:27:25 2008 UTC vs.
Revision 1.101 by root, Thu Nov 20 12:18:07 2008 UTC

87 87
88#define CALL_BEGIN(args) dSP; ENTER; SAVETMPS; PUSHMARK (SP); EXTEND (SP, args) 88#define CALL_BEGIN(args) dSP; ENTER; SAVETMPS; PUSHMARK (SP); EXTEND (SP, args)
89#define CALL_ARG_SV(sv) PUSHs (sv_2mortal (sv)) // separate because no refcount inc 89#define CALL_ARG_SV(sv) PUSHs (sv_2mortal (sv)) // separate because no refcount inc
90#define CALL_ARG(expr) PUSHs (sv_2mortal (to_sv (expr))) 90#define CALL_ARG(expr) PUSHs (sv_2mortal (to_sv (expr)))
91#define CALL_CALL(name, flags) PUTBACK; int count = call_pv (name, (flags) | G_EVAL); SPAGAIN; 91#define CALL_CALL(name, flags) PUTBACK; int count = call_pv (name, (flags) | G_EVAL); SPAGAIN;
92#define CALL_END CHECK_ERROR; FREETMPS; LEAVE 92#define CALL_END PUTBACK; CHECK_ERROR; FREETMPS; LEAVE
93 93
94////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 94//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
95 95
96void cfperl_init (); 96void cfperl_init ();
97void cfperl_main (); 97void cfperl_main ();
183INTERFACE_CLASS (attachable) 183INTERFACE_CLASS (attachable)
184struct attachable : refcnt_base 184struct attachable : refcnt_base
185{ 185{
186 static MGVTBL vtbl; 186 static MGVTBL vtbl;
187 187
188 static unordered_vector<attachable *> mortals;
189 MTH static void check_mortals ();
190
191 enum { 188 enum {
192 F_DESTROYED = 0x01, 189 F_DESTROYED = 0x01,
193 F_DEBUG_TRACE = 0x02, 190 F_DEBUG_TRACE = 0x02,
194 }; 191 };
195 int ACC (RW, flags); 192 uint8 ACC (RW, flags);
193
194 static unordered_vector<attachable *> mortals;
195 MTH static void check_mortals ();
196 196
197 // object is delete'd after the refcount reaches 0 197 // object is delete'd after the refcount reaches 0
198 MTH int refcnt_cnt () const; 198 MTH int refcnt_cnt () const;
199 // check wether the object has died and destroy 199 // check wether the object has died and destroy
200 MTH void refcnt_chk () { if (expect_false (refcnt <= 0)) do_check (); } 200 MTH void refcnt_chk () { if (expect_false (refcnt <= 0)) do_check (); }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines