Created
April 27, 2012 14:49
-
-
Save rectalogic/2509871 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int zkrb_call_zoo_acreate(zhandle_t *zh, const char *path, const char *value, int valuelen, const struct ACL_vector *acl, int flags, string_completion_t completion, const void *data) { | |
zkrb_zoo_acreate_args_t args = { | |
.rc = rc, | |
.zh = zh, | |
.path = path, | |
.value = value, | |
.valuelen = valuelen, | |
.acl = acl, | |
.flags = flags, | |
.completion = completion, | |
.data = data | |
} | |
zkrb_thread_blocking_region(zkrb_gvl_zoo_acreate, (void *)&args); | |
return args.rc; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment