Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../usr/include/./prof.h
Real path: /usr/include/prof.h
Zurück
/* Copyright (c) 1988 AT&T */ /* All Rights Reserved */ /* * Copyright (c) 1988, 2016, Oracle and/or its affiliates. All rights reserved. */ #ifndef _PROF_H #define _PROF_H #ifdef __cplusplus extern "C" { #endif /* * The MARK() facility is obsolete and may not be supported in future * releases. */ #undef MARK #if defined(__i386) #define MARK(K) {\ asm(" .data"); \ asm(" .align 4"); \ asm("."#K".:"); \ asm(" .long 0"); \ asm(" .text"); \ asm("M."#K":"); \ asm(" movl $."#K"., %edx"); \ asm(" call _mcount"); \ } #endif /* __i386 */ #if defined(__sparc) #define MARK(K) {\ asm(" .reserve ."#K"., 4, \".bss\", 4"); \ asm("M."#K":"); \ asm(" sethi %hi(."#K".), %o0"); \ asm(" call _mcount"); \ asm(" or %o0, %lo(."#K".), %o0"); \ } #endif /* __sparc */ #ifdef __cplusplus } #endif #endif /* _PROF_H */