/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to libssts/mm.h

  • Committer: Gustav Hartvigsson
  • Date: 2016-02-08 14:54:01 UTC
  • mto: This revision was merged to the branch mainline in revision 131.
  • Revision ID: gustav.hartvigsson@gmail.com-20160208145401-vh27muxhjdhu70s2
* Inpremented the manual mark and sweep thingys.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
S_BEGIN_DECLS
32
32
 
33
33
/**
 
34
 * @file 
34
35
 * @defgroup MemoryM Memory Management
35
36
 * @addtogroup MemoryM
36
37
 * @{
64
65
  S_MM_TYPE_NONE, /*< NONE, use standard. */
65
66
  S_MM_TYPE_LIBC, /*< Use libc's malloc/free stuffs */
66
67
  S_MM_TYPE_GC, /*< Use libgc's garbage collector. */
67
 
  S_MM_MARK_AND_SWEEP /*< Use a 'mark and sweep' style system. */
 
68
  S_MM_TYPE_MARK_AND_SWEEP /*< Use a 'mark and sweep' style system. */
68
69
} SMMType;
69
70
 
70
71
/**