diff options
| author | Ruslan Mustakov | 2017-12-16 13:10:26 +0700 |
|---|---|---|
| committer | Ruslan Mustakov | 2017-12-16 13:10:26 +0700 |
| commit | 9d6d20e67c72614b6c8ff0296564230f4f75caa0 (patch) | |
| tree | 0e9bc7853d64b968ae495bb312a97136627b5934 /modules | |
| parent | a5db25bd27351564f391c5f0516dff64ea61544b (diff) | |
| download | godot-9d6d20e67c72614b6c8ff0296564230f4f75caa0.tar.gz godot-9d6d20e67c72614b6c8ff0296564230f4f75caa0.tar.zst godot-9d6d20e67c72614b6c8ff0296564230f4f75caa0.zip | |
Remove get_stack_bottom
It's not used in godot-nim any longer and there were no other uses for
it.
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/gdnative/gdnative/gdnative.cpp | 4 | ||||
| -rw-r--r-- | modules/gdnative/gdnative_api.json | 6 | ||||
| -rw-r--r-- | modules/gdnative/include/gdnative/gdnative.h | 4 |
3 files changed, 0 insertions, 14 deletions
diff --git a/modules/gdnative/gdnative/gdnative.cpp b/modules/gdnative/gdnative/gdnative.cpp index 92a88e354..8ff67b10b 100644 --- a/modules/gdnative/gdnative/gdnative.cpp +++ b/modules/gdnative/gdnative/gdnative.cpp @@ -52,10 +52,6 @@ godot_object GDAPI *godot_global_get_singleton(char *p_name) { return (godot_object *)Engine::get_singleton()->get_singleton_object(String(p_name)); } // result shouldn't be freed -void GDAPI *godot_get_stack_bottom() { - return OS::get_singleton()->get_stack_bottom(); -} - // MethodBind API godot_method_bind GDAPI *godot_method_bind_get_method(const char *p_classname, const char *p_methodname) { diff --git a/modules/gdnative/gdnative_api.json b/modules/gdnative/gdnative_api.json index b7b255343..06c6e9f41 100644 --- a/modules/gdnative/gdnative_api.json +++ b/modules/gdnative/gdnative_api.json @@ -5533,12 +5533,6 @@ ] }, { - "name": "godot_get_stack_bottom", - "return_type": "void *", - "arguments": [ - ] - }, - { "name": "godot_method_bind_get_method", "return_type": "godot_method_bind *", "arguments": [ diff --git a/modules/gdnative/include/gdnative/gdnative.h b/modules/gdnative/include/gdnative/gdnative.h index f7f560642..9d7829a51 100644 --- a/modules/gdnative/include/gdnative/gdnative.h +++ b/modules/gdnative/include/gdnative/gdnative.h @@ -212,10 +212,6 @@ void GDAPI godot_object_destroy(godot_object *p_o); godot_object GDAPI *godot_global_get_singleton(char *p_name); // result shouldn't be freed -////// OS API - -void GDAPI *godot_get_stack_bottom(); // returns stack bottom of the main thread - ////// MethodBind API typedef struct { |
