diff options
author | Colin Walters <walters@verbum.org> | 2015-05-06 22:19:05 -0400 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2015-05-10 16:20:53 -0400 |
commit | 2dfe24632a4d1d73ca5676b503135090f092db22 (patch) | |
tree | 596abfd7530e73a117eb159557443cd23052a002 /src/ostree/ot-admin-functions.h | |
parent | d0edf6334625d9f65917a1bfbe42076f52b0fe8f (diff) | |
download | ostree-2dfe24632a4d1d73ca5676b503135090f092db22.tar.gz |
sysroot: Add a try_lock() API
The blocking locking API wasn't sufficient for use in the rpm-ostree
daemon; it really wants to know if the lock is held, then continue to
do other things (like service DBus requests), and get notification
when the lock is available.
We also add an async variant that can be called if the lock is not
available.
Implement a higher level "loop until lock is available" method in the
`ostree admin` commandline.
Diffstat (limited to 'src/ostree/ot-admin-functions.h')
-rw-r--r-- | src/ostree/ot-admin-functions.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ostree/ot-admin-functions.h b/src/ostree/ot-admin-functions.h index 49b7039d..67164ca5 100644 --- a/src/ostree/ot-admin-functions.h +++ b/src/ostree/ot-admin-functions.h @@ -41,5 +41,9 @@ ot_admin_get_indexed_deployment (OstreeSysroot *sysroot, int index, GError **error); +gboolean +ot_admin_sysroot_lock (OstreeSysroot *sysroot, + GError **error); + G_END_DECLS |