Skip to content
Snippets Groups Projects
Commit b9f5361f authored by Niels Möller's avatar Niels Möller
Browse files

* Atom.pmod (InternAtom): Support blocking mode.

Rev: lib/modules/Protocols.pmod/X.pmod/Atom.pmod:1.2
parent 3827d310
No related branches found
No related tags found
No related merge requests found
......@@ -104,9 +104,19 @@ class atom_manager
object req = Requests.InternAtom();
req->name = name;
send_async_request(req, pending_intern(this_object(), atom,
callback)->handle_reply);
return 0;
if (callback)
{
send_async_request(req, pending_intern(this_object(), atom,
callback)->handle_reply);
return 0;
} else {
array a = blocking_request(req);
if (!a[0])
return 0;
atom->id = a[1];
remember_atom(atom);
return atom;
}
}
object GetAtomName_req(object atom)
......@@ -138,5 +148,14 @@ class atom_manager
}
}
void create() { }
void create()
{
for(int i = 1; i<sizeof(_Xlib.predefined_atoms); i++)
{
object atom = Atom(this_object());
atom->id = i;
atom->name = _Xlib.predefined_atoms[i];
remember_atom(atom);
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment