source: GPL/branches/uniaud32-next/lib32/task.c@ 660

Last change on this file since 660 was 647, checked in by Paul Smedley, 5 years ago

Cleanup headers, fix warnings

File size: 1.8 KB
Line 
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/interrupt.h>
29#define LINUX
30#include <ossdefos2.h>
31
32struct task_struct current_task = {0};
33struct task_struct *current = &current_task;
34
35void tasklet_hi_schedule(struct tasklet_struct *t)
36{
37 if(t && t->func) {
38 t->func(t->data);
39 }
40}
41
42void tasklet_init(struct tasklet_struct *t,
43 void (*func)(unsigned long), unsigned long data)
44{
45 t->next = NULL;
46 t->sync = 0;
47 t->func = (void *)func; /* DAZ cast added to stop compiler warning */
48 t->data = (void *)data; /* DAZ cast added to stop compiiler warning */
49}
50
51//Not pretty, but sblive driver compares pointers
52ULONG OSS32_SetFileId(ULONG fileid)
53{
54 ULONG oldfileid = (ULONG)current_task.files;
55
56 current_task.files = (struct files_struct *)fileid;
57 return oldfileid;
58}
Note: See TracBrowser for help on using the repository browser.