mirror of
https://github.com/topjohnwu/ndk-busybox.git
synced 2024-11-24 12:19:49 +00:00
docs: tweak keep_data_small.txt
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
0f592d7fb9
commit
d74f8435ea
@ -103,7 +103,15 @@ smaller code. In order to assign it, use SET_PTR_TO_GLOBALS macro:
|
|||||||
|
|
||||||
SET_PTR_TO_GLOBALS(xzalloc(sizeof(G)));
|
SET_PTR_TO_GLOBALS(xzalloc(sizeof(G)));
|
||||||
|
|
||||||
Typically it is done in <applet>_main().
|
Typically it is done in <applet>_main(). Another variation is
|
||||||
|
to use stack:
|
||||||
|
|
||||||
|
int <applet>_main(...)
|
||||||
|
{
|
||||||
|
#undef G
|
||||||
|
struct globals G;
|
||||||
|
memset(&G, 0, sizeof(G));
|
||||||
|
SET_PTR_TO_GLOBALS(&G);
|
||||||
|
|
||||||
Now you can reference "globals" by G.a, G.buf and so on, in any function.
|
Now you can reference "globals" by G.a, G.buf and so on, in any function.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user