comments only
authorSimon Marlow <marlowsd@gmail.com>
Thu, 24 Jun 2010 10:51:05 +0000 (10:51 +0000)
committerSimon Marlow <marlowsd@gmail.com>
Thu, 24 Jun 2010 10:51:05 +0000 (10:51 +0000)
rts/sm/BlockAlloc.c

index 9d92c6b..484c0d4 100644 (file)
@@ -26,9 +26,6 @@
 
 static void  initMBlock(void *mblock);
 
-// The free_list is kept sorted by size, smallest first.
-// In THREADED_RTS mode, the free list is protected by sm_mutex.
-
 /* -----------------------------------------------------------------------------
 
   Implementation notes
@@ -123,6 +120,8 @@ static void  initMBlock(void *mblock);
 
 #define MAX_FREE_LIST 9
 
+// In THREADED_RTS mode, the free list is protected by sm_mutex.
+
 static bdescr *free_list[MAX_FREE_LIST];
 static bdescr *free_mblock_list;