summaryrefslogtreecommitdiff
path: root/os_dep.c
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2018-08-31 23:22:15 +0300
committerIvan Maidanski <ivmai@mail.ru>2018-08-31 23:22:15 +0300
commitc50de12ab045b57953e152545836c23f76e7bc24 (patch)
tree08d92d894791fa6818a323f876834a37a303a7bf /os_dep.c
parentdbe3f337616faaaed26bd6ba9f9fcad190b200f2 (diff)
downloadbdwgc-c50de12ab045b57953e152545836c23f76e7bc24.tar.gz
Replace some FIXME items with TODO ones
(code refactoring) * alloc.c (GC_maybe_gc, GC_collect_a_little_inner, GC_finish_collection): Replace FIXME item with TODO one. * gcj_mlc.c (maybe_finalize): Likewise. * include/gc.h [!GC_DEBUG || !__GNUC__] (GC_PTR_ADD): Likewise. * include/private/gcconfig.h [X86_64 && LINUX && __GLIBC__ && !__UCLIBC__] (GETCONTEXT_FPU_EXCMASK_BUG): Likewise. * mach_dep.c (GC_with_callee_saves_pushed): Likewise. * mark_rts.c (GC_push_current_stack): Likewise. * misc.c [MSWIN32 || MSWINCE] (WRITE): Likewise. * os_dep.c [ECOS] (ecos_gc_memory): Likewise. * os_dep.c (GC_get_stack_base, GC_page_was_ever_dirty): Likewise. * reclaim.c (GC_reclaim_clear): Likewise. * include/private/gcconfig.h [OPENBSD && m68k]: Remove FIXME item.
Diffstat (limited to 'os_dep.c')
-rw-r--r--os_dep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/os_dep.c b/os_dep.c
index bf089e86..03cd7ecb 100644
--- a/os_dep.c
+++ b/os_dep.c
@@ -480,7 +480,7 @@ GC_INNER char * GC_get_maps(void)
# define ECOS_GC_MEMORY_SIZE (448 * 1024)
# endif /* ECOS_GC_MEMORY_SIZE */
- /* FIXME: This is a simple way of allocating memory which is */
+ /* TODO: This is a simple way of allocating memory which is */
/* compatible with ECOS early releases. Later releases use a more */
/* sophisticated means of allocating memory than this simple static */
/* allocator, but this method is at least bound to work. */
@@ -1478,7 +1478,7 @@ GC_INNER size_t GC_page_size = 0;
/* stack of one thread and the register backing store of the */
/* next. Thus this is likely to identify way too large a */
/* "stack" and thus at least result in disastrous performance. */
- /* FIXME - Implement better strategies here. */
+ /* TODO: Implement better strategies here. */
GC_API int GC_CALL GC_get_stack_base(struct GC_stack_base *b)
{
IF_CANCEL(int cancel_state;)
@@ -3802,7 +3802,7 @@ GC_INNER GC_bool GC_dirty_init(void)
return NULL == HDR(h)
|| get_pht_entry_from_index(GC_written_pages, PHT_HASH(h));
# else
- /* FIXME - implement me for MANUAL_VDB. */
+ /* TODO: implement me for MANUAL_VDB. */
(void)h;
return TRUE;
# endif