2 *************************************************************************
4 * 5F., No.36, Taiyuan St., Jhubei City,
8 * (c) Copyright 2002-2007, Ralink Technology, Inc.
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
15 * This program is distributed in the hope that it will be useful, *
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
18 * GNU General Public License for more details. *
20 * You should have received a copy of the GNU General Public License *
21 * along with this program; if not, write to the *
22 * Free Software Foundation, Inc., *
23 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
25 *************************************************************************
34 --------- ---------- ----------------------------------------------
47 This data structure mainly strip some callback function defined in
48 "struct net_device" in kernel source "include/linux/netdevice.h".
50 The definition of this data structure may various depends on different
53 typedef struct _RTMP_OS_NETDEV_OP_HOOK_
55 const struct net_device_ops
*netdev_ops
;
58 unsigned char devAddr
[6];
59 unsigned char devName
[16];
60 unsigned char needProtcted
;
61 }RTMP_OS_NETDEV_OP_HOOK
, *PRTMP_OS_NETDEV_OP_HOOK
;
64 typedef enum _RTMP_TASK_STATUS_
66 RTMP_TASK_STAT_UNKNOWN
= 0,
67 RTMP_TASK_STAT_INITED
= 1,
68 RTMP_TASK_STAT_RUNNING
= 2,
69 RTMP_TASK_STAT_STOPED
= 4,
71 #define RTMP_TASK_CAN_DO_INSERT (RTMP_TASK_STAT_INITED |RTMP_TASK_STAT_RUNNING)
73 #define RTMP_OS_TASK_NAME_LEN 16
74 typedef struct _RTMP_OS_TASK_
76 char taskName
[RTMP_OS_TASK_NAME_LEN
];
78 //unsigned long taskFlags;
79 RTMP_TASK_STATUS taskStatus
;
80 #ifndef KTHREAD_SUPPORT
83 struct completion taskComplete
;
85 unsigned char task_killed
;
86 #ifdef KTHREAD_SUPPORT
87 struct task_struct
*kthread_task
;
88 wait_queue_head_t kthread_q
;
89 BOOLEAN kthread_running
;
93 #endif // __RMTP_OS_H__ //