Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gear-lib/libdebug/libdebug.c
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ static void backtrace_symbols_detail(void *array[], int size)
for (i = 1; i < size; ++i) {//from 1, ignore this file info
fprintf(fp, "%p\n", array[i]);
}
fclose(fp);
pclose(fp);
}
#endif

Expand Down
4 changes: 2 additions & 2 deletions gear-lib/libposix/libposix.h
Original file line number Diff line number Diff line change
Expand Up @@ -271,8 +271,8 @@ struct reflect {
void_fn fn;
const char* name;
};
struct reflect __start_reflect;
struct reflect __stop_reflect;
extern struct reflect __start_reflect;
extern struct reflect __stop_reflect;

#define REFLECT_DEF(x) __attribute__((section("reflect"), aligned(sizeof(void*)))) \
struct reflect __##x = {(void_fn)x, #x};
Expand Down