Skip to content
Snippets Groups Projects
Commit 7f30a64e authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

should now work...

Rev: lib/modules/Thread.pmod:1.3
parent 48e2f4c3
Branches
Tags
No related merge requests found
......@@ -2,9 +2,9 @@ constant Mutex=__builtin.Mutex;
constant Condition=__builtin.Condition;
class Fifo {
inherit Builtin.condition : r_cond;
inherit Builtin.condition: w_cond;
inherit Builtin.mutex: lock;
inherit Condition : r_cond;
inherit Condition: w_cond;
inherit Mutex: lock;
mixed *buffer;
int r_ptr, w_ptr;
......@@ -38,8 +38,8 @@ class Fifo {
};
class Queue {
inherit Builtin.condition: r_cond;
inherit Builtin.mutex: lock;
inherit Condition: r_cond;
inherit Mutex: lock;
mixed *buffer=allocate(16);
int r_ptr, w_ptr;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment