source: trunk/include/os2sel.h@ 21350

Last change on this file since 21350 was 21350, checked in by abwillis, 16 years ago
File size: 1.4 KB
RevLine 
[10004]1/* $Id: os2sel.h,v 1.13 2003-04-10 10:26:23 sandervl Exp $ */
[48]2/*
3 *
4 * Project Odin Software License can be found in LICENSE.TXT
5 *
6 */
7#ifndef __OS2SEL_H__
8#define __OS2SEL_H__
9
[6997]10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15
[4075]16#ifdef __WATCOMC__
17unsigned short GetFS(void);
18#pragma aux GetFS = \
19 "mov ax,fs" \
20 value [ax] \
21 parm nomemory;
[48]22
[4075]23void SetFS(unsigned short sel);
24#pragma aux SetFS = \
25 "mov fs,ax" \
26 parm [ax];
27
28unsigned short RestoreOS2FS(void);
29#pragma aux RestoreOS2FS = \
30 "mov bx, fs" \
31 "mov ax, 150bh" \
32 "mov fs, ax" \
33 value [bx] \
34 modify nomemory exact [ax];
[9631]35#endif
[4075]36
[21350]37#ifndef __WATCOMC__
[9631]38#ifdef __EMX__
[9969]39static inline unsigned short GetFS(void)
[9631]40{
[10004]41 int __res;
42 __asm__ __volatile__("mov %%fs, %%eax" : "=a" (__res));
43 return(__res);
[9631]44}
45
[9969]46static inline void SetFS(unsigned short sel)
[9631]47{
[10004]48 __asm__ __volatile__("mov %%eax,%%fs" : : "a" (sel));
[9631]49}
50
[10004]51static inline int RestoreOS2FS(void)
[9631]52{
[10004]53 int __res, xx = 0x0150b;
54
55 __asm__ __volatile__(
56 "mov %%fs,%0 \n\t"
57 "mov %1,%%fs \n\t"
58 : "=&r" (__res) : "r" (xx));
59 return(__res);
[9631]60}
61
62
[4075]63#else
[6997]64
65unsigned short _System GetFS (void);
66unsigned short _System RestoreOS2FS(void);
[4077]67void _System SetFS (unsigned short selector);
68unsigned short _System SetReturnFS (unsigned short selector);
[9631]69//SvL: Checks if thread FS & exception structure are valid
70int _System CheckCurFS(void);
[4075]71#endif
[21350]72#endif
[4075]73
[6997]74
75
76#ifdef __cplusplus
77}
78#endif
[2544]79
[6997]80
[537]81#endif //__OS2SEL_H__
Note: See TracBrowser for help on using the repository browser.