Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[libposix,libdebug] fix compile issue #110

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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