1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#include "SimpleTypeSystem.h"
int main (char ** argc, int argv) {
SBaseObjectInstance * obj = s_base_object_new ();
fprintf(stdout, "Refcount: %d\n", s_base_object_get_refcount (obj));
s_base_object_ref (obj);
fprintf(stdout, "Refcount: %d\n", s_base_object_get_refcount (obj));
s_base_object_ref (obj);
fprintf(stdout, "Refcount: %d\n", s_base_object_get_refcount (obj));
s_base_object_ref (obj);
fprintf(stdout, "Refcount: %d\n", s_base_object_get_refcount (obj));
s_base_object_unref (obj);
fprintf(stdout, "Refcount: %d\n", s_base_object_get_refcount (obj));
s_base_object_unref (obj);
fprintf(stdout, "Refcount: %d\n", s_base_object_get_refcount (obj));
s_base_object_unref (obj);
fprintf(stdout, "Refcount: %d\n", s_base_object_get_refcount (obj));
s_base_object_unref (obj);
//fprintf(stdout, "Refcount: %d\n", s_base_object_get_refcount (obj));
return 0;
}
|