Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../usr/include/harfbuzz/../instzones_api.h
Real path: /usr/include/instzones_api.h
Zurück
/* * Copyright (c) 2006, 2020, Oracle and/or its affiliates. All rights reserved. */ #ifndef _INSTZONES_API_H #define _INSTZONES_API_H /* * Module: instzones_api.h * Group: libinstzones * Description: This module contains the libinstzones API data structures, * constants, and function prototypes. */ /* * required includes */ /* System includes */ #include <stdarg.h> #include <stdio.h> #include <string.h> #include <termios.h> #include <sys/mman.h> #include <sys/param.h> #include <sys/types.h> #include <sys/ioctl.h> #include <libzonecfg.h> /* * C++ prefix */ #ifdef __cplusplus extern "C" { #endif /* function prototypes */ /* PRINTFLIKE1 */ typedef void (*_z_printf_fcn_t)(char *a_format, ...); /* zone list structure */ typedef struct _zoneListElement_t *zoneList_t; /* zone brand list structure */ typedef struct _zoneBrandList zoneBrandList_t; /* flag for zone locking functions */ typedef unsigned long ZLOCKS_T; /* flags for zone locking */ #define ZLOCKS_PKG_ADMIN ((ZLOCKS_T)0x00000002) /* package admin */ #define ZLOCKS_ALL ((ZLOCKS_T)0xFFFFFFFF) /* all locks */ #define ZLOCKS_NONE ((ZLOCKS_T)0x00000000) /* no locks */ /* * external function definitions */ /* zones.c */ extern boolean_t z_zones_are_implemented(void); extern void z_set_zone_root(const char *__zroot); extern char *z_get_zonename(void); extern zone_state_t z_zlist_get_current_state(zoneList_t __a_zoneList, int __a_zoneIndex); extern int z_zoneExecCmdArray(int *__r_status, char **__r_results, char *__a_inputFile, char *__a_path, char *__a_argv[], const char *__a_zoneName, int *__a_fds); extern int z_zone_exec(const char *__zonename, const char *__path, char *__argv[], char *__a_stdoutPath, char *__a_stderrPath, int *__a_fds); extern void z_free_zone_list(zoneList_t __a_zoneList); extern zoneList_t z_get_nonglobal_zone_list_by_brand(zoneBrandList_t *); extern void z_free_brand_list(zoneBrandList_t *__a_brandList); extern zoneBrandList_t *z_make_brand_list(const char *__brandList, const char *__delim); extern boolean_t z_running_in_global_zone(void); extern void z_set_output_functions(_z_printf_fcn_t __a_echo_fcn, _z_printf_fcn_t __a_echo_debug_fcn, _z_printf_fcn_t __a_progerr_fcn); extern int z_set_zone_spec(const char *__zlist); extern int z_verify_zone_spec(void); extern boolean_t z_global_only(void); extern boolean_t z_lock_this_zone(ZLOCKS_T __a_lflags); extern boolean_t z_unlock_this_zone(ZLOCKS_T __a_lflags); extern char *z_zlist_get_zonename(zoneList_t __a_zoneList, int __a_zoneId); extern char *z_zlist_get_zonepath(zoneList_t __a_zoneList, int __a_zoneId); extern char *z_zlist_get_brand(zoneList_t __a_zoneList, int __a_zoneId); extern boolean_t z_is_zone_brand_in_list(char *__zoneName, zoneBrandList_t *__brands); extern boolean_t z_zones_are_implemented(void); /* zones_exec.c */ extern int z_ExecCmdArray(int *__r_status, char **__r_results, char *__a_inputFile, char *__a_cmd, char **__a_args); /* zones_paths.c */ extern char *z_make_zone_root(char *); extern void z_path_canonize(char *__file); extern void z_canoninplace(char *__file); /* zones_lofs.c */ extern void z_destroyMountTable(void); extern int z_createMountTable(void); extern int z_isPathWritable(const char *); extern void z_resolve_lofs(char *__path, size_t); /* zones_states.c */ extern int UmountAllZones(char *__mntpnt); /* * C++ postfix */ #ifdef __cplusplus } #endif #endif /* _INSTZONES_API_H */