summaryrefslogtreecommitdiff
path: root/libiohelp
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1994-01-25 21:39:08 +0000
committerMichael I. Bushnell <mib@gnu.org>1994-01-25 21:39:08 +0000
commite03acee918c436297df45b0fc97874c88b01157c (patch)
tree368eafab34fdb55135f621edcd8d0c19c53dfc75 /libiohelp
parentce1bb62b721f596ba538e5e86cf03a486e98c4af (diff)
Formerly handle_io_get_conch.c.~5~
Diffstat (limited to 'libiohelp')
-rw-r--r--libiohelp/handle_io_get_conch.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libiohelp/handle_io_get_conch.c b/libiohelp/handle_io_get_conch.c
index 1b7338de..92b145f9 100644
--- a/libiohelp/handle_io_get_conch.c
+++ b/libiohelp/handle_io_get_conch.c
@@ -30,18 +30,18 @@ ioserver_handle_io_get_conch (struct conch *c, void *user,
if (c->holder == user)
{
if (user_sh->conch_status != USER_HAS_NOT_CONCH)
- error = fetch_shared_data (user);
+ error = ioserver_fetch_shared_data (user);
else
user_sh->accessed = user_sh->written = 0;
if (!error)
- error = put_shared_data (user);
+ error = ioserver_put_shared_data (user);
if (!error)
user_sh->conch_status = USER_HAS_CONCH;
}
else
{
- error = get_conch (c);
+ error = ioserver_get_conch (c);
if (!error)
{
@@ -50,7 +50,7 @@ ioserver_handle_io_get_conch (struct conch *c, void *user,
if (user_sh->conch_status == USER_HAS_NOT_CONCH)
user_sh->accessed = user_sh->written = 0;
user_sh->conch_status = USER_HAS_CONCH;
- put_shared_data (user);
+ ioserver_put_shared_data (user);
}
}