Skip to content

Vardhan/issue 123 #24

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

Closed
wants to merge 14 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
Prev Previous commit
Next Next commit
Use new symbol names to call Rust allocator
  • Loading branch information
Jethro Beekman committed Jan 21, 2019
commit 0feefe575044ad33d9610ce7061de137b6091262
4 changes: 2 additions & 2 deletions libunwind/src/UnwindRustSgx.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ extern "C" {
int __rust_rwlock_rdlock(RWLock *rwlock);
int __rust_rwlock_wrlock(RWLock *rwlock);
int __rust_rwlock_unlock(RWLock *rwlock);
unsigned char *__rust_alloc(size_t, size_t);
void __rust_dealloc(unsigned char *, size_t, size_t);
unsigned char *__rust_c_alloc(size_t, size_t);
void __rust_c_dealloc(unsigned char *, size_t, size_t);
void __rust_print_err(uint8_t *m, int s);
__attribute__((noreturn)) void __rust_abort(void);
unsigned char *__rust_encl_address(size_t);
Expand Down