Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../usr/include/vm/mrp.h
Real path: /usr/include/vm/mrp.h
Zurück
/* * Copyright (c) 2015, 2022, Oracle and/or its affiliates. */ #ifndef _VM_MRP_H #define _VM_MRP_H #ifdef __cplusplus extern "C" { #endif #include <sys/types.h> #include <sys/shm_impl.h> struct mrpid_ds64 { ipc_perm64_t mrpds_perm; /* operation permission struct */ uint64_t mrpds_nshmids; /* total #shmids attached */ uint64_t mrpds_total; /* total reserved mrp mem */ uint64_t mrpds_used; /* memory used */ uint64_t mrpds_free; /* memory free */ uint64_t mrpds_stolen; /* memory stolen by predictor */ memtime_sec_t mrpds_atime; /* last mrp_reserve time ? */ memtime_sec_t mrpds_dtime; /* last mrp_unreseve time ? */ memtime_sec_t mrpds_ctime; /* last change time ? */ memtime_sec_t mrpds_ddtime; /* time mrp will be destroyed */ uint64_t mrpds_ddsecs; /* delayed destroy seconds */ uint32_t mrpds_flags; }; typedef struct mrpid_ds64 mrpid_ds64_t; extern int mrp_stat64(mrpid_t __mrpid, mrpid_ds64_t *); extern int mrp_register_osm(mrpid_t, size_t); extern int mrp_unregister_osm(mrpid_t); #ifdef __cplusplus } #endif #endif /* _VM_MRP_H */