diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2001-11-08 02:47:46 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2001-11-08 02:47:46 +0000 |
commit | 9b73270ff645abbeb18366ff4f2003504cf27521 (patch) | |
tree | 69bf4465bc7e3767e1d70e0af978020f53c3cd50 /src/libw32dll/wine/ldt_keeper.c | |
parent | 5acf1943f09069b804cedab289dbab22fc2e909c (diff) | |
download | xine-lib-9b73270ff645abbeb18366ff4f2003504cf27521.tar.gz xine-lib-9b73270ff645abbeb18366ff4f2003504cf27521.tar.bz2 |
disabled LDT allocation for FS segment. this was causing much trouble
so i disabled it as someone did in previous version. ldt_keeper
explicitely states that it should be initialized before any threads are
created, which wouldn't be possible under current xine plugin architeture
except with some nasty hack. FIXME: we need to check any potential
problems of running dlls with default FS segment.
CVS patchset: 996
CVS date: 2001/11/08 02:47:46
Diffstat (limited to 'src/libw32dll/wine/ldt_keeper.c')
-rw-r--r-- | src/libw32dll/wine/ldt_keeper.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libw32dll/wine/ldt_keeper.c b/src/libw32dll/wine/ldt_keeper.c index 18ddb22ce..273bccc2e 100644 --- a/src/libw32dll/wine/ldt_keeper.c +++ b/src/libw32dll/wine/ldt_keeper.c @@ -92,9 +92,11 @@ extern "C" #endif void Setup_FS_Segment(void) { +/* __asm__ __volatile__( "movl %0,%%eax; movw %%ax, %%fs" : : "i" (TEB_SEL) ); +*/ } #ifdef __linux__ |