Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../usr/include/sys/refstr_impl.h
Real path: /usr/include/sys/refstr_impl.h
Zurück
/* * Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved. */ #ifndef _SYS_REFSTR_IMPL_H #define _SYS_REFSTR_IMPL_H #include <sys/types.h> #ifdef __cplusplus extern "C" { #endif /* * Strings with reference counts. * The refstr_t definition is private to the implementation. * <sys/refstr.h> just declares it as a 'struct refstr'. * We require there never to be an allocation larger than 4 Gbytes. */ struct refstr { uint32_t rs_size; /* allocation size */ uint32_t rs_refcnt; /* reference count */ char rs_string[1]; /* constant string */ }; #ifdef __cplusplus } #endif #endif /* _SYS_REFSTR_IMPL_H */