OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [LINUX_2_4_26_OR32/] [linux/] [linux-2.4/] [include/] [asm-s390x/] [current.h] - Rev 1279

Go to most recent revision | Compare with Previous | Blame | View Log

/*
 *  include/asm-s390/current.h
 *
 *  S390 version
 *    Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
 *    Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com)
 *
 *  Derived from "include/asm-i386/current.h"
 */
 
#ifndef _S390_CURRENT_H
#define _S390_CURRENT_H
 
#ifdef __KERNEL__
 
struct task_struct;
 
static inline struct task_struct * get_current(void)
{
        struct task_struct *current;
        __asm__("lghi  %0,-16384\n\t"
                "alg   %0,0xd40"
                : "=&r" (current) : : "cc" );
        return current;
 }
 
#define current get_current()
 
#endif
 
#endif /* !(_S390_CURRENT_H) */
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.