[Wisp-cvs] wisp/users/dig pe.py,1.30,1.31 pe.tran,1.12,1.13
Status: Alpha
Brought to you by:
digg
|
From: <di...@us...> - 2003-05-20 05:05:37
|
Update of /cvsroot/wisp/wisp/users/dig
In directory sc8-pr-cvs1:/tmp/cvs-serv25315
Modified Files:
pe.py pe.tran
Log Message:
made #aout/dll-flags default to 0
Index: pe.py
===================================================================
RCS file: /cvsroot/wisp/wisp/users/dig/pe.py,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- pe.py 19 May 2003 14:19:20 -0000 1.30
+++ pe.py 20 May 2003 05:05:31 -0000 1.31
@@ -182,7 +182,6 @@
e.place_symbol('#aout/subsys-version-major', 4)
e.place_symbol('#aout/subsys-version-minor', 0)
e.place_symbol('#aout/subsys', PE_SUBSYS.WINDOWS_CHAR)
- e.place_symbol('#aout/dll-flags', 0)
e.place_symbol('#aout/stack-reserve-size', 1024 * 1024) # one megabyte
e.place_symbol('#aout/stack-commit-size', 0x1000) # one page
e.place_symbol('#aout/heap-reserve-size', 1024 * 1024) # one megabyte
Index: pe.tran
===================================================================
RCS file: /cvsroot/wisp/wisp/users/dig/pe.tran,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- pe.tran 19 May 2003 14:19:20 -0000 1.12
+++ pe.tran 20 May 2003 05:05:32 -0000 1.13
@@ -70,7 +70,7 @@
'!aout/header-end t,
'#aout/checksum (opt) t,
'#aout/subsys w,
- '#aout/dll-flags w,
+ '#aout/dll-flags (opt) w,
\ Known flags for #aout/dll-flags
\ 0x0001 - per-process library initialization
\ 0x0002 - per-process library termination
|