mirror of
https://github.com/matrix-construct/construct
synced 2024-11-26 00:32:35 +01:00
ircd::ctx: Relax member access.
This commit is contained in:
parent
28cc60a909
commit
628b194151
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ namespace ircd::ctx
|
||||||
// additional contexts are queued. This can be used with std::
|
// additional contexts are queued. This can be used with std::
|
||||||
// locking concepts.
|
// locking concepts.
|
||||||
//
|
//
|
||||||
class ircd::ctx::mutex
|
struct ircd::ctx::mutex
|
||||||
{
|
{
|
||||||
dock q;
|
dock q;
|
||||||
bool m;
|
bool m;
|
||||||
|
|
|
@ -16,7 +16,7 @@ namespace ircd::ctx
|
||||||
class shared_mutex;
|
class shared_mutex;
|
||||||
}
|
}
|
||||||
|
|
||||||
class ircd::ctx::shared_mutex
|
struct ircd::ctx::shared_mutex
|
||||||
{
|
{
|
||||||
dock q;
|
dock q;
|
||||||
ssize_t s;
|
ssize_t s;
|
||||||
|
|
Loading…
Reference in a new issue