Skip to content

Commit

Permalink
split subject info into two objects to make the ipc transfer on panda…
Browse files Browse the repository at this point in the history
…board possible
  • Loading branch information
BugUser0815 committed Jul 4, 2016
1 parent 876a33e commit 772c3a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions repos/base-foc/src/core/include/platform_thread.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ namespace Genode {
class Platform_pd;
class Platform_thread
{

private:

enum State { DEAD, RUNNING };
Expand All @@ -54,6 +55,7 @@ namespace Genode {

Affinity::Location _location;


void _create_thread(void);
void _finalize_construction(const char *name);
bool _in_syscall(Fiasco::l4_umword_t flags);
Expand Down
1 change: 0 additions & 1 deletion repos/base/src/core/include/trace/source_registry.h
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ class Genode::Trace::Source_registry
{
Lock::Guard guard(_lock);
_entries.insert(entry);
//PDBG("insert:%s", entry->info().label.string());
}

void remove(Source *entry)
Expand Down
2 changes: 1 addition & 1 deletion repos/base/src/core/include/trace/subject_registry.h
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ class Genode::Trace::Subject
{
Execution_time execution_time;
Affinity::Location affinity;
unsigned prio=100;
unsigned prio;

{
Locked_ptr<Source> source(_source);
Expand Down

0 comments on commit 772c3a9

Please sign in to comment.