mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-19 03:06:39 +00:00
GDB monitor: move thread iterator declarations
This patch moves the thread iterator function declarations in GDB monitor's 'Cpu_session_component' above the 'CPU session interface' comment, because these functions are not part of the CPU session interface anymore. Fixes #10.
This commit is contained in:
parent
83039267fa
commit
ae8c464495
@ -49,6 +49,8 @@ class Cpu_session_component : public Rpc_object<Cpu_session>
|
||||
|
||||
unsigned long lwpid(Thread_capability thread_cap);
|
||||
Thread_capability thread_cap(unsigned long lwpid);
|
||||
Thread_capability first();
|
||||
Thread_capability next(Thread_capability);
|
||||
|
||||
/***************************
|
||||
** CPU session interface **
|
||||
@ -57,8 +59,6 @@ class Cpu_session_component : public Rpc_object<Cpu_session>
|
||||
Thread_capability create_thread(Name const &, addr_t);
|
||||
Ram_dataspace_capability utcb(Thread_capability thread);
|
||||
void kill_thread(Thread_capability);
|
||||
Thread_capability first();
|
||||
Thread_capability next(Thread_capability);
|
||||
int set_pager(Thread_capability, Pager_capability);
|
||||
int start(Thread_capability, addr_t, addr_t);
|
||||
void pause(Thread_capability thread_cap);
|
||||
|
Loading…
Reference in New Issue
Block a user