summaryrefslogtreecommitdiffstatshomepage
path: root/py/gc.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-07-01 14:28:40 +0100
committerDamien George <damien.p.george@gmail.com>2014-07-01 14:28:40 +0100
commit5fc580475f5eba8248de86a4148090e63f777372 (patch)
tree5261ef47c946e0db2b619829513945889e7e4ab6 /py/gc.h
parentaa47f3968bdb46c67b6150eb7637d1cbd1e76767 (diff)
parentf0b29729aa086892a2dc6640a9fe619bb723e5fa (diff)
downloadmicropython-5fc580475f5eba8248de86a4148090e63f777372.tar.gz
micropython-5fc580475f5eba8248de86a4148090e63f777372.zip
Merge branch 'dhylands-preserve-except'
Diffstat (limited to 'py/gc.h')
-rw-r--r--py/gc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/py/gc.h b/py/gc.h
index cea368f480..3b3b7dbb50 100644
--- a/py/gc.h
+++ b/py/gc.h
@@ -30,6 +30,7 @@ void gc_init(void *start, void *end);
// They can be used to prevent the GC from allocating/freeing.
void gc_lock(void);
void gc_unlock(void);
+bool gc_is_locked(void);
// A given port must implement gc_collect by using the other collect functions.
void gc_collect(void);