Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../data-stud/../../usr/./include/kstat.h
Real path: /usr/include/kstat.h
Zurück
/* * Copyright (c) 1988, 2016, Oracle and/or its affiliates. All rights reserved. */ #ifndef _KSTAT_H #define _KSTAT_H #include <sys/types.h> #include <sys/kstat.h> #ifdef __cplusplus extern "C" { #endif /* * kstat_open() returns a pointer to a kstat_ctl_t. * This is used for subsequent libkstat operations. */ typedef struct kstat_ctl { kid_t kc_chain_id; /* current kstat chain ID */ kstat_t *kc_chain; /* pointer to kstat chain */ int kc_kd; /* /dev/kstat descriptor */ void **kc_private; /* Private to libkstat, do not use outside. */ } kstat_ctl_t; extern kstat_ctl_t *kstat_open(void); extern int kstat_close(kstat_ctl_t *); extern kid_t kstat_read(kstat_ctl_t *, kstat_t *, void *); extern kid_t kstat_write(kstat_ctl_t *, kstat_t *, void *); extern kid_t kstat_chain_update(kstat_ctl_t *); extern kstat_t *kstat_lookup(kstat_ctl_t *, char *, int, char *); extern void *kstat_data_lookup(kstat_t *, char *); #ifdef __cplusplus } #endif #endif /* _KSTAT_H */