diff options
author | Amitay Isaacs <amitay@gmail.com> | 2013-07-09 12:24:59 +1000 |
---|---|---|
committer | Amitay Isaacs <amitay@gmail.com> | 2013-07-10 14:33:19 +1000 |
commit | 500b26e48f97719f4ba1f92b6f86bb341c2e5525 (patch) | |
tree | 98a5ae3a282240a96f394fe078a9b511b07deb47 /ctdb/common/system_aix.c | |
parent | 4357aebdb9b493c4e5814a53588d2cd35e4c36f8 (diff) | |
download | samba-500b26e48f97719f4ba1f92b6f86bb341c2e5525.tar.gz |
common/system: Add ctdb_set_process_name() function
Signed-off-by: Amitay Isaacs <amitay@gmail.com>
(This used to be ctdb commit fc3689c977f48d7988eed0654fb8e5ce4b8bfc8b)
Diffstat (limited to 'ctdb/common/system_aix.c')
-rw-r--r-- | ctdb/common/system_aix.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ctdb/common/system_aix.c b/ctdb/common/system_aix.c index 35363d330a3..41f61aecb5d 100644 --- a/ctdb/common/system_aix.c +++ b/ctdb/common/system_aix.c @@ -380,6 +380,12 @@ char *ctdb_get_process_name(pid_t pid) return NULL; } +int ctdb_set_process_name(const char *name) +{ + /* FIXME AIX: set_process_name not implemented */ + return -ENOSYS; +} + bool ctdb_get_lock_info(pid_t req_pid, struct ctdb_lock_info *lock_info) { /* FIXME AIX: get_lock_info not implemented */ |