mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-04-28 12:37:11 +00:00
12 lines
332 B
C
12 lines
332 B
C
/* SPDX-License-Identifier: LGPL-2.1+ */
|
|
|
|
#ifndef __LXC_ERROR_H
|
|
#define __LXC_ERROR_H
|
|
|
|
#define LXC_CLONE_ERROR "Failed to clone a new set of namespaces"
|
|
#define LXC_UNPRIV_EOPNOTSUPP "the requested function %s is not currently supported with unprivileged containers"
|
|
|
|
extern int lxc_error_set_and_log(int pid, int status);
|
|
|
|
#endif
|