Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ././../../../../../../../usr/include/mon.h
Real path: /usr/include/mon.h
Zurück
/* Copyright (c) 1988 AT&T */ /* All Rights Reserved */ /* * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved. */ #ifndef _MON_H #define _MON_H #include <sys/ccompile.h> #ifdef __cplusplus extern "C" { #endif /* * monitor(3C) is obsolete and may not be supported in future releases. */ /* * Inclusion of <sys/types.h> will break SVID namespace, hence only * the size_t type is defined in this header. */ #if !defined(_SIZE_T) || __cplusplus >= 199711L #define _SIZE_T #if defined(_LP64) || defined(_I32LPx) typedef unsigned long size_t; /* size of something in bytes */ #else typedef unsigned int size_t; /* (historical version) */ #endif #endif /* _SIZE_T */ struct hdr { char *lpc; char *hpc; size_t nfns; }; struct cnt { char *fnpc; long mcnt; }; typedef unsigned short WORD; #define MON_OUT "mon.out" #define MPROGS0 (150 * sizeof (WORD)) /* 300 for pdp11, 600 for 32-bits */ #define MSCALE0 4 #ifndef NULL #if defined(_XPG7) && !defined(__cplusplus) #define NULL ((void *)0) #else /* _XPG7 && !_cplusplus */ #if defined(_LP64) #define NULL 0L #else #define NULL 0 #endif #endif /* _XPG7 && !_cplusplus */ #endif extern void monitor(int (*)(void), int (*)(void), WORD *, size_t, size_t) \ __ATTR_DEPRECATED; #ifdef __cplusplus } #endif #endif /* _MON_H */