From ab416723591e5e3c611dd9a590ff753f03ddc6dc Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Wed, 1 Jul 2020 15:08:16 -0400 Subject: [PATCH] docs: remove extraneous comment --- runtime/include/module_database.h | 1 - 1 file changed, 1 deletion(-) diff --git a/runtime/include/module_database.h b/runtime/include/module_database.h index a04073a..3d65eee 100644 --- a/runtime/include/module_database.h +++ b/runtime/include/module_database.h @@ -19,7 +19,6 @@ module_database_add(struct module *module) { assert(module->socket_descriptor == -1); - /* __sync_fetch_and_add is provided by GCC */ int f = __sync_fetch_and_add(&module_database_free_offset, 1); assert(f < MODULE_MAX_MODULE_COUNT); module_database[f] = module;