Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1547 → Rev 1656

/uspace/trunk/libc/arch/mips32/include/context_offset.h
13,3 → 13,7
#define OFFSET_S8 0x28
#define OFFSET_GP 0x2c
#define OFFSET_TLS 0x30
 
/** @}
*/
 
/uspace/trunk/libc/arch/mips32/include/psthread.h
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup libcmips32
* @{
*/
/** @file
*/
 
#ifndef __LIBC__mips32PSTHREAD_H__
#define __LIBC__mips32PSTHREAD_H__
 
65,3 → 71,7
} context_t;
 
#endif
 
/** @}
*/
 
/uspace/trunk/libc/arch/mips32/include/atomic.h
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup libcmips32
* @{
*/
/** @file
*/
 
#ifndef __mips32_ATOMIC_H__
#define __mips32_ATOMIC_H__
 
65,3 → 71,7
}
 
#endif
 
/** @}
*/
 
/uspace/trunk/libc/arch/mips32/include/endian.h
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup libcmips32
* @{
*/
/** @file
*/
 
#ifndef __mips32_ENDIAN_H__
#define __mips32_ENDIAN_H__
 
37,3 → 43,7
 
#endif
 
 
/** @}
*/
 
/uspace/trunk/libc/arch/mips32/include/stackarg.h
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup libcmips32
* @{
*/
/** @file
*/
 
#ifndef __LIBC_mips32_STACKARG_H__
#define __LIBC_mips32_STACKARG_H__
 
50,3 → 56,7
#define va_end(ap)
 
#endif
 
/** @}
*/
 
/uspace/trunk/libc/arch/mips32/include/limits.h
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup libcmips32
* @{
*/
/** @file
*/
 
#ifndef __mips32__LIMITS_H__
#define __mips32__LIMITS_H__
 
37,3 → 43,7
#endif
 
 
 
/** @}
*/
 
/uspace/trunk/libc/arch/mips32/include/types.h
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup libcmips32
* @{
*/
/** @file
*/
 
#ifndef __LIBC__TYPES_H__
#define __LIBC__TYPES_H__
 
45,3 → 51,7
typedef unsigned long long int uint64_t;
 
#endif
 
/** @}
*/
 
/uspace/trunk/libc/arch/mips32/include/thread.h
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup libcmips32
* @{
*/
/** @file
*/
 
/* TLS for MIPS is described in http://www.linux-mips.org/wiki/NPTL */
 
#ifndef __LIBC__mips32THREAD_H__
67,3 → 73,7
}
 
#endif
 
/** @}
*/
 
/uspace/trunk/libc/arch/mips32/src/thread.c
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup libcmips32
* @{
*/
/** @file
*/
 
#include <thread.h>
#include <malloc.h>
 
48,3 → 54,7
{
free(tcb);
}
 
/** @}
*/
 
/uspace/trunk/libc/arch/mips32/src/syscall.c
26,6 → 26,14
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup libcmips32 mips32
* @brief mips32 architecture dependent parts of libc
* @ingroup lc
* @{
*/
/** @file
*/
 
#include <libc.h>
 
sysarg_t __syscall(const sysarg_t p1, const sysarg_t p2,
52,3 → 60,7
return __mips_reg_v0;
}
 
/** @}
*/