Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1655 → Rev 1656

/uspace/trunk/libc/arch/ia32/include/psthread.h
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup libcia32
* @{
*/
/** @file
*/
 
#ifndef __LIBC__ia32PSTHREAD_H__
#define __LIBC__ia32PSTHREAD_H__
 
53,3 → 59,9
} context_t;
 
#endif
 
 
/** @}
*/
/uspace/trunk/libc/arch/ia32/include/atomic.h
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup libcia32
* @{
*/
/** @file
*/
 
#ifndef __ia32_ATOMIC_H__
#define __ia32_ATOMIC_H__
 
67,3 → 73,9
#define atomic_predec(val) (atomic_postdec(val)-1)
 
#endif
 
 
/** @}
*/
/uspace/trunk/libc/arch/ia32/include/endian.h
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup libcia32
* @{
*/
/** @file
*/
 
#ifndef __ia32_ENDIAN_H__
#define __ia32_ENDIAN_H__
 
38,3 → 44,9
#endif
 
 
 
 
/** @}
*/
/uspace/trunk/libc/arch/ia32/include/stackarg.h
26,7 → 26,13
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup libcia32
* @{
*/
/** @file
*/
 
 
/*
* Variable argument list manipulation macros
* for architectures using stack to pass arguments.
56,3 → 62,9
 
 
#endif
 
 
/** @}
*/
/uspace/trunk/libc/arch/ia32/include/limits.h
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup libcia32
* @{
*/
/** @file
*/
 
#ifndef __ia32__LIMITS_H__
#define __ia32__LIMITS_H__
 
36,3 → 42,9
 
#endif
 
 
 
/** @}
*/
/uspace/trunk/libc/arch/ia32/include/types.h
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup libcia32
* @{
*/
/** @file
*/
 
#ifndef __LIBC__TYPES_H__
#define __LIBC__TYPES_H__
 
45,3 → 51,9
typedef unsigned long long int uint64_t;
 
#endif
 
 
/** @}
*/
/uspace/trunk/libc/arch/ia32/include/thread.h
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup libcia32
* @{
*/
/** @file
*/
 
#ifndef __LIBC__ia32THREAD_H__
#define __LIBC__ia32THREAD_H__
 
50,3 → 56,9
}
 
#endif
 
 
/** @}
*/
/uspace/trunk/libc/arch/ia32/src/syscall.c
26,6 → 26,15
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup libcia32 ia32
* @brief ia32 architecture dependent parts of libc
* @ingroup lc
* @{
*/
/** @file
*/
 
#include <thread.h>
#include <libc.h>
 
sysarg_t __syscall(const sysarg_t p1, const sysarg_t p2, const sysarg_t p3,
45,3 → 54,7
return ret;
}
 
/** @}
*/