mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 20:42:56 +01:00
Rename tid() to dst() in Native_capability.
As suggested by Norman in the discussion of issue #145, this commit renames the tid() accessor in Native_capability to dst().
This commit is contained in:
committed by
Norman Feske
parent
84ca4b25db
commit
ae8cf5f44d
@@ -21,7 +21,7 @@ inline void Genode::Ipc_ostream::_marshal_capability(Genode::Native_capability c
|
||||
{
|
||||
long unique_id = cap.local_name();
|
||||
_write_to_buf(unique_id);
|
||||
_snd_msg->snd_append_pt_sel(cap.tid());
|
||||
_snd_msg->snd_append_pt_sel(cap.dst());
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -67,7 +67,7 @@ namespace Genode {
|
||||
_init_sem();
|
||||
|
||||
/* block on semaphore, will be unblocked if signal is available */
|
||||
Nova::sm_ctrl(_sem.tid(), Nova::SEMAPHORE_DOWN);
|
||||
Nova::sm_ctrl(_sem.dst(), Nova::SEMAPHORE_DOWN);
|
||||
|
||||
/*
|
||||
* Now that the server has unblocked the semaphore, we are sure
|
||||
|
||||
Reference in New Issue
Block a user