[1] | 1 | /* $Id: task.c,v 1.1.1.1 2003/07/02 13:57:04 eleph Exp $ */
|
---|
| 2 | /*
|
---|
| 3 | * OS/2 implementation of Linux task kernel services
|
---|
| 4 | *
|
---|
| 5 | * (C) 2000-2002 InnoTek Systemberatung GmbH
|
---|
| 6 | * (C) 2000-2001 Sander van Leeuwen (sandervl@xs4all.nl)
|
---|
| 7 | *
|
---|
| 8 | * This program is free software; you can redistribute it and/or
|
---|
| 9 | * modify it under the terms of the GNU General Public License as
|
---|
| 10 | * published by the Free Software Foundation; either version 2 of
|
---|
| 11 | * the License, or (at your option) any later version.
|
---|
| 12 | *
|
---|
| 13 | * This program is distributed in the hope that it will be useful,
|
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 16 | * GNU General Public License for more details.
|
---|
| 17 | *
|
---|
| 18 | * You should have received a copy of the GNU General Public
|
---|
| 19 | * License along with this program; if not, write to the Free
|
---|
| 20 | * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
|
---|
| 21 | * USA.
|
---|
| 22 | *
|
---|
| 23 | */
|
---|
| 24 |
|
---|
| 25 | #include <linux/version.h>
|
---|
| 26 | #include <linux/kernel.h>
|
---|
| 27 | #include <linux/fs.h>
|
---|
| 28 | #include <linux/tqueue.h>
|
---|
| 29 | #define LINUX
|
---|
| 30 | #include <ossdefos2.h>
|
---|
| 31 |
|
---|
| 32 | struct task_struct current_task = {0};
|
---|
| 33 | struct task_struct *current = ¤t_task;
|
---|
| 34 |
|
---|
| 35 | void tasklet_hi_schedule(struct tq_struct *t)
|
---|
| 36 | {
|
---|
| 37 | if(t && t->routine) {
|
---|
| 38 | t->routine(t->data);
|
---|
| 39 | }
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | //Not pretty, but sblive driver compares pointers
|
---|
| 43 | ULONG OSS32_SetFileId(ULONG fileid)
|
---|
| 44 | {
|
---|
| 45 | ULONG oldfileid = (ULONG)current_task.files;
|
---|
| 46 |
|
---|
| 47 | current_task.files = (struct files_struct *)fileid;
|
---|
| 48 | return oldfileid;
|
---|
| 49 | }
|
---|