Subversion Repositories HelenOS-historic

Rev

Rev 1587 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1587 Rev 1702
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
 /** @addtogroup mips32proc mips32
-
 
30
 * @ingroup proc
-
 
31
 * @{
-
 
32
 */
-
 
33
/** @file
-
 
34
 */
-
 
35
 
29
#ifndef __mips32_TASK_H__
36
#ifndef __mips32_TASK_H__
30
#define __mips32_TASK_H__
37
#define __mips32_TASK_H__
31
 
38
 
32
typedef struct {
39
typedef struct {
33
} task_arch_t;
40
} task_arch_t;
34
 
41
 
35
#define task_create_arch(t)
42
#define task_create_arch(t)
36
#define task_destroy_arch(t)
43
#define task_destroy_arch(t)
37
 
44
 
38
#endif
45
#endif
-
 
46
 
-
 
47
 /** @}
-
 
48
 */
-
 
49