mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-01 03:03:40 +00:00
[fuchsia] Track change of mx_job_default
The implementation of mx_job_default changed from a macro which accessed the __magenta_job_default global variable to a proper function call. This patch tracks that change.
This commit is contained in:
parent
13eb0ec9f1
commit
4e2a43f323
@ -102,7 +102,7 @@ pub struct mx_info_process_t {
|
||||
}
|
||||
|
||||
extern {
|
||||
static __magenta_job_default: mx_handle_t;
|
||||
pub fn mx_job_default() -> mx_handle_t;
|
||||
|
||||
pub fn mx_task_kill(handle: mx_handle_t) -> mx_status_t;
|
||||
|
||||
@ -119,10 +119,6 @@ extern {
|
||||
avail: *mut mx_size_t) -> mx_status_t;
|
||||
}
|
||||
|
||||
pub fn mx_job_default() -> mx_handle_t {
|
||||
unsafe { return __magenta_job_default; }
|
||||
}
|
||||
|
||||
// From `enum special_handles` in system/ulib/launchpad/launchpad.c
|
||||
// HND_LOADER_SVC = 0
|
||||
// HND_EXEC_VMO = 1
|
||||
|
Loading…
Reference in New Issue
Block a user