-
Notifications
You must be signed in to change notification settings - Fork 12.4k
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
Fix wrong cxx_extern return value #8294
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -37,11 +37,11 @@ int mkdirs(const char *path, mode_t mode); | |||
ssize_t canonical_path(const char * __restrict__ path, char * __restrict__ buf, size_t bufsiz); | ||||
bool rm_rf(const char *path); | ||||
bool frm_rf(int dirfd); | ||||
void cp_afc(const char *src, const char *dest); | ||||
void mv_path(const char *src, const char *dest); | ||||
void link_path(const char *src, const char *dest); | ||||
void clone_attr(const char *src, const char *dest); | ||||
void fclone_attr(int src, int dest); | ||||
bool cp_afc(const char *src, const char *dest); | ||||
bool mv_path(const char *src, const char *dest); | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Magisk/native/src/base/cxx_extern.rs Line 124 in 07835a3
|
||||
bool link_path(const char *src, const char *dest); | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Magisk/native/src/base/cxx_extern.rs Line 141 in 07835a3
|
||||
bool clone_attr(const char *src, const char *dest); | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Magisk/native/src/base/cxx_extern.rs Line 158 in 07835a3
|
||||
bool fclone_attr(int src, int dest); | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Magisk/native/src/base/cxx_extern.rs Line 174 in 07835a3
|
||||
|
||||
} // extern "C" | ||||
|
||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Magisk/native/src/base/cxx_extern.rs
Line 107 in 07835a3