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

7903704: Expose addresses of native functions #228

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
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 test/jtreg/generator/passaddr/passaddr.h
Original file line number Diff line number Diff line change
@@ -31,6 +31,6 @@ typedef void (*cb_t)(void);
EXPORT void b(void);
EXPORT void a(cb_t cb);

typedef void (*cb_var_t)(void);
typedef void (*cb_var_t)(int x, ...);
EXPORT void b_variadic(int x, ...);
EXPORT void a_variadic(cb_var_t cb);