CVS log for winex/scheduler/process.c

(logo)

ViewCVS and CVS Help

(back) Up to [cvs] / winex / scheduler / process.c

Request diff between arbitrary revisions


Default branch: MAIN
Bookmark a link to: HEAD / (download)

Revision 1.62 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Sep 12 12:20:11 2007 UTC (14 months, 1 week ago) by daniel
CVS Tags: HEAD
Changes since 1.61: +2 -1 lines
Diff to previous 1.61
- changed the MapProcessHandle() function to GetProcessId().  MapProcessHandle() is still available through krnl386.exe

Revision 1.61 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Aug 1 12:22:52 2007 UTC (15 months, 3 weeks ago) by mark
Changes since 1.60: +6 -1 lines
Diff to previous 1.60
- fixed GetModuleFileNameA() to properly return a truncated filename error code.  GetModuleFileNameW() just calls GetModuleFileNameA(), so its error codes should be updated as well.
- fixed all the calls to GetModuleFileNameA/W() to check for small buffer and bad module errors.  Currently small buffer errors are just reported and are allowed to proceed with either an empty string or truncated string for the filename.  In the case of an error retrieving the module filename (error == 0), the calling function reports the error and returns immediately.

Revision 1.60 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jul 31 20:06:14 2007 UTC (15 months, 3 weeks ago) by mark
Changes since 1.59: +3 -1 lines
Diff to previous 1.59
Refactor SHM server to handle both POSIX and SYSV IPC.
Add support for SHM server on Mac OS X.

Revision 1.59 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jul 31 19:56:08 2007 UTC (15 months, 3 weeks ago) by mark
Changes since 1.58: +3 -2 lines
Diff to previous 1.58
- ExitProcess needs to kill threads prior to PROCESS_DETACH notifications
- fix wineserver on the Mac to actually be able to kill threads

Revision 1.58 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jul 31 19:42:27 2007 UTC (15 months, 3 weeks ago) by mark
Changes since 1.57: +2 -1 lines
Diff to previous 1.57
- fix mem smashing when run from an App package

Revision 1.57 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jul 31 18:01:04 2007 UTC (15 months, 3 weeks ago) by mark
Changes since 1.56: +16 -0 lines
Diff to previous 1.56
- add assembly version of TlsGetValue() for performance

Revision 1.56 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Mar 30 18:58:41 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.55: +4 -0 lines
Diff to previous 1.55
- add a new memory allocator based on ptmalloc3 and make it the default (at least for now for testing)
- to disable, add "NewAllocator"="N" to the [Wine] section of your config file

Revision 1.55 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Mar 30 15:48:33 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.54: +88 -3 lines
Diff to previous 1.54
- disambiguate in-process tids (which all platforms have) with
  cross-process tids (which only some platforms have)
- store in-process tid in the TEB, and use that to fix thread cleanup on
  MacOS X
- modify shm server to handle platforms which don't have cross-process tids
- rename server unix_tid to unix_tid_or_pid for clarity
- implement MacOSX functionality on top of Mach to replace ptrace functionality on Linux:
   - suspend/resume thread
   - read/write process memory
   - get/set thread context

Revision 1.54 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Mar 29 14:15:36 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.53: +3 -0 lines
Diff to previous 1.53
Add an init function to detect processor related information and set the
NT-style environment variables.

Revision 1.53 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Mar 29 14:03:35 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.52: +3 -2 lines
Diff to previous 1.52
- rewrite QueryPerformanceCounter() to use fixed frequency of 1193182Hz
- move to NtQueryPerformanceCounter() and properly forward the Kernel32 versions
- move GetTickCount() to NtGetTickCount() and properly forward others
- share starting time between NtGetTickCount() & NtQueryPerformanceCounter()
- share starting time across all processes

Revision 1.52 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Mar 28 17:53:06 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.51: +12 -5 lines
Diff to previous 1.51
DLLs are now loaded, and kernel32 startup code executed, before doing the
init_process_done server call. Once this server call is made, the parent
process can do pretty much anything to us, and it's important that we've
initialized the most important kernel structures before allowing this.

Revision 1.51 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Mar 28 14:33:40 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.50: +15 -1 lines
Diff to previous 1.50
Merge branch into mainline.

Revision 1.50 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Mar 28 14:26:03 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.49: +9 -3 lines
Diff to previous 1.49
First attempt at a virtual memory manager implementation. Currently it
only allocates virtual memory from regions reserved by the preloader to
the extent possible, and once this area is full it delegates further
allocations to the old Linux-chooses-the-spot implementation.

(Because of that, it might not be a complete replacement for
MemoryLayoutOverride quite yet, will have to be tested...)

It apparently fixes mouse targeting in World of Warcraft.

It can be (partially) disabled with this config entry:

[memory]
"MemoryManager" = "N"

Revision 1.49 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Mar 28 14:25:11 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.48: +2 -1 lines
Diff to previous 1.48
compilation fix for gcc-2.95

Revision 1.48 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Mar 27 20:25:04 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.47: +3 -3 lines
Diff to previous 1.47
Fix various type confusions resulting in warnings. Initialize the process_info variable, as it could be used uninitialized if creating a process fails.

Revision 1.47 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Mar 27 19:49:20 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.46: +22 -4 lines
Diff to previous 1.46
Make which processes to block configurable.

[AppDefaults\\eReg.exe\\transgaming]
"Disable" = "Y"

Revision 1.46 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Mar 27 19:49:14 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.45: +17 -0 lines
Diff to previous 1.45
Prohibit any process called ereg.exe from executing, until we can fix
Flash properly.

Revision 1.45 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Mar 27 16:59:46 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.44: +2 -0 lines
Diff to previous 1.44
Block asynchronous signals during process startup, until signal handlers
are fully set up.

Revision 1.44 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Dec 29 16:35:12 2005 UTC (2 years, 10 months ago) by ovek
Changes since 1.43: +2 -4 lines
Diff to previous 1.43
Fix a case of closing a file handle twice in a row. Harmless, but still
irked me.

Revision 1.43 - (download), view (text) (markup) (annotate) - [select for diffs]
Mon Mar 7 21:27:12 2005 UTC (3 years, 8 months ago) by david
CVS Tags: cedega-4-3
Changes since 1.42: +1 -0 lines
Diff to previous 1.42
some more include changes for moving some stuff from winnt.h to wine/port.h
and wine/hardware.h

Revision 1.42 - (download), view (text) (markup) (annotate) - [select for diffs]
Sat Mar 5 00:18:40 2005 UTC (3 years, 8 months ago) by david
Changes since 1.41: +76 -37 lines
Diff to previous 1.41
oops, forgot to check this in. exec_wine_binary should use preloader if possible

Revision 1.41 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Feb 23 22:36:18 2005 UTC (3 years, 8 months ago) by david
Changes since 1.40: +4 -2 lines
Diff to previous 1.40
this allows the shm wineserver to be allocated at any address, including any address that shmat gives us.
for now we've still fixed it to 0x90000000 but that will soon be configurable. set to NULL to let the kernel choose the address for us.
also changed s/int/size_t/ for shm_size in various places.

Revision 1.40 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Jan 19 20:16:34 2005 UTC (3 years, 10 months ago) by ovek
Changes since 1.39: +8 -4 lines
Diff to previous 1.39
Pass Windows PATH environment variable to child processes through the
Unix WINEPATH environment variable.

Revision 1.39 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Jan 19 19:55:03 2005 UTC (3 years, 10 months ago) by ovek
Changes since 1.38: +6 -3 lines
Diff to previous 1.38
If the first exit() attempt raises an exception, it seems calling exit()
again works fine, and much better than calling _exit() instead. Now
Steam actually does update itself on my system (with LinuxThreads).

Revision 1.38 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Jan 19 19:54:29 2005 UTC (3 years, 10 months ago) by ovek
Changes since 1.37: +12 -1 lines
Diff to previous 1.37
Protect the exit() in ExitProcess by an exception handler which resorts
to _exit() if invoked, to work around some weird bugs in the atexit handlers
of the nvidia drivers. (Doesn't seem to fix the problem completely for me,
but this should at least deal with one aspect of it.)

Revision 1.37 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Jan 19 19:52:33 2005 UTC (3 years, 10 months ago) by ovek
Changes since 1.36: +1 -1 lines
Diff to previous 1.36
If an empty string is passed as the child's current directory when creating
a new process, treat this the same as when a null pointer is passed: use the
parent's current directory, instead of letting things error out without
setting a current directory at all.

Revision 1.36 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jul 27 22:11:20 2004 UTC (4 years, 3 months ago) by peter
Changes since 1.35: +3 -1 lines
Diff to previous 1.35
Allocate regular memory only if we cannot allocate a suitable amount
of shared memory. We guess at this amount by taking a quick guess at
the size of the registry plus a 4MB breathing room. This should resolve
issues that were reported on winex-devel.

Revision 1.35 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jul 27 20:14:22 2004 UTC (4 years, 3 months ago) by peter
Changes since 1.34: +0 -1 lines
Diff to previous 1.34
Do not attempt to get the win16 mutex before it's initialized. This
was borking 16 applications.

Revision 1.34 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jul 27 18:48:10 2004 UTC (4 years, 3 months ago) by gavriels
Changes since 1.33: +3 -0 lines
Diff to previous 1.33
Eject handling, take 2.  Move back to signals for requesting a client
fd close operation.  Remove EJECT APC stuff.  Add in polling of the
CD eject button, actual ejection of disks.

Revision 1.33 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Jul 7 16:29:18 2004 UTC (4 years, 4 months ago) by ovek
Changes since 1.32: +10 -0 lines
Diff to previous 1.32
Fix launching Winelib apps with relative paths, by moving the chdir to "/"
to a later time.

Revision 1.32 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jun 29 15:27:55 2004 UTC (4 years, 4 months ago) by peter
Changes since 1.31: +1 -1 lines
Diff to previous 1.31
Some more missed 16 tid values.

Revision 1.31 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jun 29 14:53:40 2004 UTC (4 years, 4 months ago) by peter
Changes since 1.30: +1 -1 lines
Diff to previous 1.30
Initial pass at small integer thread/process IDs. Needs to be tweaked
in the future to unbreak 16bit window hooks.

Revision 1.30 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Apr 28 12:56:42 2004 UTC (4 years, 6 months ago) by peter
Changes since 1.29: +4 -0 lines
Diff to previous 1.29
First phase of SHM wineserver. Only the simple calls are accelerated.
shm calls are output to client debug channel.

Revision 1.29 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Apr 27 15:04:21 2004 UTC (4 years, 6 months ago) by peter
Changes since 1.28: +3 -2 lines
Diff to previous 1.28
A little more debugging info in a couple of failure conditions on process
spawn.

Revision 1.28 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Mar 16 20:16:04 2004 UTC (4 years, 8 months ago) by peter
Changes since 1.27: +13 -3 lines
Diff to previous 1.27
Add nt debug information for critical sections.

Revision 1.27 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Feb 20 21:06:46 2004 UTC (4 years, 9 months ago) by peter
Changes since 1.26: +14 -0 lines
Diff to previous 1.26
There's no particularly good reason to be using constructors here. Just
do everything inline.

Revision 1.26 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Dec 19 04:01:19 2003 UTC (4 years, 11 months ago) by ovek
CVS Tags: winex-3-3-2, winex-3-3-1, winex-3-3
Branch point for: winex-3-3-branch
Changes since 1.25: +3 -1 lines
Diff to previous 1.25
Merge of ReWind CVS at Dec 18, 2003.

Revision 1.1.1.28 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Dec 19 03:52:47 2003 UTC (4 years, 11 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: rewind-20031219
Changes since 1.1.1.27: +3 -1 lines
Diff to previous 1.1.1.27
Import from ReWind CVS at Dec 18, 2003.

Revision 1.1.1.27 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Wed Dec 17 18:58:09 2003 UTC (4 years, 11 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: rewind-20031217
Changes since 1.1.1.26: +267 -70 lines
Diff to previous 1.1.1.26
Import from ReWind CVS at Dec 17, 2003.

Revision 1.25 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Dec 12 16:09:18 2003 UTC (4 years, 11 months ago) by jlh
Changes since 1.24: +7 -1 lines
Diff to previous 1.24
Fix for multi-disc installers

Revision 1.24 - (download), view (text) (markup) (annotate) - [select for diffs]
Sat Nov 1 08:49:10 2003 UTC (5 years ago) by hunnise
CVS Tags: winex-3-2-1, winex-3-2, winex-3-1-99, dec3-internal-merge
Branch point for: winex-3-2-branch
Changes since 1.23: +9 -3 lines
Diff to previous 1.23
Make it possible to provide a command line arg in the config file.

Revision 1.23 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Jul 25 22:10:26 2003 UTC (5 years, 3 months ago) by hunnise
CVS Tags: winex-sims-3-2, start-merge-6oct03
Branch point for: winex-sims-3-2-branch
Changes since 1.22: +1 -1 lines
Diff to previous 1.22
last debugtools.h -> wine/debug.h conversion

Revision 1.22 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jun 24 20:59:49 2003 UTC (5 years, 4 months ago) by hunnise
Changes since 1.21: +0 -1 lines
Diff to previous 1.21
Some warning fixes.

Revision 1.21 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue May 6 00:41:43 2003 UTC (5 years, 6 months ago) by hunnise
CVS Tags: winex-kohan-3-1, winex-3-1
Branch point for: winex-kohan-3-2-branch, winex-3-0-branch
Changes since 1.20: +249 -89 lines
Diff to previous 1.20
Big wacking commit. Add most of the remaining pthread support.

Revision 1.20 - (download), view (text) (markup) (annotate) - [select for diffs]
Sat Apr 5 20:03:56 2003 UTC (5 years, 7 months ago) by hunnise
CVS Tags: winex-3-0
Changes since 1.19: +3 -3 lines
Diff to previous 1.19
Fix up stdin, stdout and stderr creation.

Revision 1.19 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Feb 6 15:05:44 2003 UTC (5 years, 9 months ago) by hunnise
CVS Tags: winex-3-0-pre-1
Changes since 1.18: +2 -0 lines
Diff to previous 1.18
Only compile if pthreads are enabled

Revision 1.18 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Dec 11 22:07:57 2002 UTC (5 years, 11 months ago) by hunnise
CVS Tags: head_merge_from_winex_2_0_branch
Changes since 1.17: +1 -1 lines
Diff to previous 1.17
include/file.h doesn't exist on windows, move to include/wine/file.h

Revision 1.17 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Sep 25 20:15:50 2002 UTC (6 years, 1 month ago) by ovek
Changes since 1.16: +13 -13 lines
Diff to previous 1.16
Stripped whitespace from end of lines.

Revision 1.1.1.26 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Wed Sep 25 19:23:42 2002 UTC (6 years, 1 month ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: rewind-20030217, rewind-20020925
Changes since 1.1.1.25: +11 -11 lines
Diff to previous 1.1.1.25
Import of ReWind CVS at Sep 25, 2002.

Revision 1.16 - (download), view (text) (markup) (annotate) - [select for diffs]
Mon May 27 19:55:42 2002 UTC (6 years, 5 months ago) by crazney
CVS Tags: quartz-pre-removal, quartz-post-removal
Changes since 1.15: +18 -0 lines
Diff to previous 1.15
add GetProcessPriorityBoost implementation

Revision 1.13.2.1 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Apr 23 00:39:47 2002 UTC (6 years, 7 months ago) by ovek
Branch: winex-2-0-branch
CVS Tags: winex-kohan-2-1, winex-2-2-1, winex-2-2, winex-2-1, winex-2-0-branch-merge-to-head
Changes since 1.13: +1 -1 lines
Diff to previous 1.13 , to next main 1.14
Fixed an erroneous message (this error originates from the difficult merge
of the Wine 20011226 release, long before the WineX 2.0 release).

Revision 1.15 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Apr 23 00:29:12 2002 UTC (6 years, 7 months ago) by ovek
Changes since 1.14: +1 -1 lines
Diff to previous 1.14
Fixed an erroneous message (this error originates from the difficult merge
of the Wine 20011226 release, long before the WineX 2.0 release).

Revision 1.14 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Apr 19 16:36:34 2002 UTC (6 years, 7 months ago) by ovek
Changes since 1.13: +1 -4 lines
Diff to previous 1.13
Merge of Wine release 20020228, the last X11-licensed Wine release.
Conflicts between our typelib marshaller and Marcus's were resolved
by dumping Marcus's marshaller.

Revision 1.1.1.25 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Apr 19 15:53:42 2002 UTC (6 years, 7 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: wine-20020228, rewind-20020804, rewind-20020607, rewind-20020427, rewind-20020419
Changes since 1.1.1.24: +1 -4 lines
Diff to previous 1.1.1.24
Import of Wine release 20020228, the last X11-licensed Wine release.

Revision 1.13 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Feb 8 22:21:53 2002 UTC (6 years, 9 months ago) by hunnise
CVS Tags: winex-2-0
Branch point for: winex-2-0-branch
Changes since 1.12: +14 -4 lines
Diff to previous 1.12
From Brad Martin bmartin@umr.edu
ReadProcessMemory and WriteProcessMemory might have NULL pointer for
bytes_read and bytes_written

Revision 1.12 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Jan 16 19:49:07 2002 UTC (6 years, 10 months ago) by ovek
Changes since 1.11: +0 -3 lines
Diff to previous 1.11
Merge of WineHQ CVS at Jan 16, 2002.

Revision 1.1.1.24 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Wed Jan 16 19:07:12 2002 UTC (6 years, 10 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20020116
Changes since 1.1.1.23: +0 -3 lines
Diff to previous 1.1.1.23
Import of WineHQ CVS at Jan 16, 2002.

Revision 1.11 - (download), view (text) (markup) (annotate) - [select for diffs]
Mon Dec 31 16:07:18 2001 UTC (6 years, 10 months ago) by ovek
Changes since 1.10: +2 -2 lines
Diff to previous 1.10
Fixed some merge problems.

Revision 1.10 - (download), view (text) (markup) (annotate) - [select for diffs]
Mon Dec 31 15:12:18 2001 UTC (6 years, 10 months ago) by ovek
Changes since 1.9: +164 -118 lines
Diff to previous 1.9
Attempted merge of Wine release 20011226. Probably breaks lots of stuff.
(Use the wine-premerge-20011226 cvs tag if you want)

Revision 1.1.1.23 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Mon Dec 31 10:52:36 2001 UTC (6 years, 10 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: wine-20011226
Changes since 1.1.1.22: +182 -177 lines
Diff to previous 1.1.1.22
Import of Wine release 20011226.
(The tree before this import has been tagged wine-premerge-20011226)

Revision 1.9 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Dec 13 00:04:23 2001 UTC (6 years, 11 months ago) by andrewlewycky
CVS Tags: wine-premerge-20011226
Changes since 1.8: +34 -0 lines
Diff to previous 1.8
Support using the pthreads library.
configure with --enable-pthreads to enable it.

Revision 1.8 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Dec 6 21:14:11 2001 UTC (6 years, 11 months ago) by andrewlewycky
Changes since 1.7: +79 -84 lines
Diff to previous 1.7
Fix bugs in ReadProcessMemory and WriteProcessMemory.

Revision 1.7 - (download), view (text) (markup) (annotate) - [select for diffs]
Sun Oct 28 15:12:07 2001 UTC (7 years ago) by ovek
Changes since 1.6: +11 -1 lines
Diff to previous 1.6
Merge of WineHQ CVS at Oct 28, 2001.

Revision 1.1.1.22 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Sun Oct 28 14:20:34 2001 UTC (7 years ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20011028
Changes since 1.1.1.21: +11 -1 lines
Diff to previous 1.1.1.21
Import of WineHQ CVS at Oct 28, 2001.

Revision 1.6 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Oct 19 16:40:52 2001 UTC (7 years, 1 month ago) by ovek
Changes since 1.5: +2 -0 lines
Diff to previous 1.5
Ensure that executables loaded from removable media are copied into RAM
and then closed, so that the media can be unmounted afterwards.

Revision 1.5 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Oct 4 14:24:54 2001 UTC (7 years, 1 month ago) by ovek
CVS Tags: winehq-premerge-20010824-premerge-20011014, winehq-premerge-20010824-postmerge-20011014
Changes since 1.4: +87 -43 lines
Diff to previous 1.4
Merge from WineHQ CVS on at Oct 4, 2001.

Revision 1.1.1.21 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Thu Oct 4 13:48:49 2001 UTC (7 years, 1 month ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20011005, winehq-20011004, wine-20011004
Changes since 1.1.1.20: +87 -40 lines
Diff to previous 1.1.1.20
Import of WineHQ CVS at Oct 4, 2001.

Revision 1.4 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Aug 29 19:37:10 2001 UTC (7 years, 2 months ago) by ovek
Changes since 1.3: +23 -48 lines
Diff to previous 1.3
Merge of Wine release 20010824 (only resolved CVS conflicts so far).

Revision 1.1.1.20 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Wed Aug 29 18:24:45 2001 UTC (7 years, 2 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20010908, wine-20010824
Changes since 1.1.1.19: +23 -48 lines
Diff to previous 1.1.1.19
Import of Wine release 20010824.

Revision 1.3 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Aug 9 20:07:54 2001 UTC (7 years, 3 months ago) by andrewlewycky
CVS Tags: winehq-premerge-20010824-start, winehq-premerge-20010824-20011014, Oct1201, Oct1101
Branch point for: winehq-premerge-20010824
Changes since 1.2: +1 -1 lines
Diff to previous 1.2
Allocate enough memory to include the terminating NUL.

Revision 1.2 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Aug 2 20:53:34 2001 UTC (7 years, 3 months ago) by gavriels
Changes since 1.1: +604 -396 lines
Diff to previous 1.1
Preserve exact command line - including quotes - used when creating a process.
Certain copy-protection software expects this...

Revision 1.1.1.19 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Wed May 9 18:45:05 2001 UTC (7 years, 6 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20010509, wine-20010510
Changes since 1.1.1.18: +3 -2 lines
Diff to previous 1.1.1.18
Import of WineHQ CVS at May 9, 2001.

Revision 1.1.1.18 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Tue May 1 05:48:10 2001 UTC (7 years, 6 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20010501
Changes since 1.1.1.17: +3 -2 lines
Diff to previous 1.1.1.17
Import of WineHQ CVS at May 1, 2001.

Revision 1.1.1.17 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Sun Apr 15 01:57:56 2001 UTC (7 years, 7 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20010425, winehq-20010419, winehq-20010416, winehq-20010414, wine-20010418
Changes since 1.1.1.16: +2 -1 lines
Diff to previous 1.1.1.16
Import of WineHQ CVS at April 14, 2001. I didn't really want to merge
before I was sure that WineHQ supported per-application x11drv settings,
since WineHQ has ceased to support x11drv settings (--managed, --desktop)
on the command line, but I suppose the merge can't be postponed forever.

Revision 1.1.1.16 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Sun Apr 15 00:49:20 2001 UTC (7 years, 7 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: wine-20010326
Changes since 1.1.1.15: +6 -8 lines
Diff to previous 1.1.1.15
Import of Wine release 20010326.

Revision 1.1.1.15 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Mon Mar 5 22:55:52 2001 UTC (7 years, 8 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20010320, winehq-20010318, wine-20010305
Changes since 1.1.1.14: +75 -59 lines
Diff to previous 1.1.1.14
Import of Wine release 20010305.

Revision 1.1.1.14 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Mar 2 11:36:25 2001 UTC (7 years, 8 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: wine-20010216
Changes since 1.1.1.13: +61 -28 lines
Diff to previous 1.1.1.13
Import of Wine 20010216 release (tagged with wine-20010216).

Revision 1.1.1.13 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Jan 26 19:15:33 2001 UTC (7 years, 9 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20010129, winehq-20010126
Changes since 1.1.1.12: +23 -15 lines
Diff to previous 1.1.1.12
Import of WineHQ CVS at Jan 26, 2001.

Revision 1.1.1.12 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Wed Jan 17 14:45:30 2001 UTC (7 years, 10 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20010123, winehq-20010117
Changes since 1.1.1.11: +3 -8 lines
Diff to previous 1.1.1.11
Import of WineHQ CVS at Jan 17, 2001.

Revision 1.1.1.11 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Jan 12 19:39:23 2001 UTC (7 years, 10 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20010113, winehq-20010112, wine-20010112
Changes since 1.1.1.10: +10 -8 lines
Diff to previous 1.1.1.10
Import of WineHQ CVS at Jan 12, 2001.

Revision 1.1.1.10 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Jan 5 08:03:27 2001 UTC (7 years, 10 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20010105
Changes since 1.1.1.9: +30 -25 lines
Diff to previous 1.1.1.9
Import of WineHQ CVS at Jan 5, 2001, after Alexandre applied our
winehq-ddraw-merge patch, slightly modified.
(I tagged the tree before this import with winehq-premerge-20010105,
just in case.)

Revision 1.1.1.9 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Dec 29 10:56:51 2000 UTC (7 years, 10 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-premerge-20010105, winehq-20010103, winehq-20001230, winehq-20001229
Changes since 1.1.1.8: +4 -1 lines
Diff to previous 1.1.1.8
Import of WineHQ CVS at Dec 29, 2000.
OK, I'll also add tags to mark the Wine 20001222 release relative to
our tree, if we still want to make diffs relative to last release...

Revision 1.1.1.8 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Thu Dec 21 03:35:47 2000 UTC (7 years, 11 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20001223, winehq-20001221, wine-20001222
Changes since 1.1.1.7: +0 -3 lines
Diff to previous 1.1.1.7
Import of WineHQ CVS at Dec 21, 2000.

Revision 1.1.1.7 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Dec 15 21:03:02 2000 UTC (7 years, 11 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20001213
Changes since 1.1.1.6: +2 -0 lines
Diff to previous 1.1.1.6
Import of WineHQ CVS at Dec 13, 2000 - right before Alexandre started
destabilizing the tree. Let's see if it's possible to work from here.

Revision 1.1.1.6 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Thu Dec 14 14:03:44 2000 UTC (7 years, 11 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20001214
Changes since 1.1.1.5: +0 -2 lines
Diff to previous 1.1.1.5
Yet another import of WineHQ - 20001214. (Hopefully without trouble.)

Revision 1.1.1.5 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Tue Dec 12 14:00:55 2000 UTC (7 years, 11 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20001212
Changes since 1.1.1.4: +198 -64 lines
Diff to previous 1.1.1.4
Import of WineHQ CVS at Dec 12, 2000 (really this time).

Revision 1.1.1.4 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Wed Dec 6 15:51:39 2000 UTC (7 years, 11 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20001206
Changes since 1.1.1.3: +22 -10 lines
Diff to previous 1.1.1.3
Bot gored, decided to merge with WineHQ again.
Using ISO date format in the tags to avoid accidental time travelling.
Importing WineHQ CVS at 20001206...

Revision 1.1.1.3 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Dec 1 08:19:09 2000 UTC (7 years, 11 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-011200
Changes since 1.1.1.2: +1 -4 lines
Diff to previous 1.1.1.2
Import of WineHQ CVS at Dec 12 2000. Lots of bugfixes in there...

Revision 1.1.1.2 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Thu Nov 23 15:18:01 2000 UTC (7 years, 11 months ago) by andrewl
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-112300
Changes since 1.1.1.1: +206 -226 lines
Diff to previous 1.1.1.1
Import of Nov 23 winehq.

Revision 1.1.1.1.6.1 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Nov 23 13:57:07 2000 UTC (7 years, 11 months ago) by andrewl
Branch: merge-231100
Changes since 1.1.1.1: +206 -226 lines
Diff to previous 1.1.1.1 , to next main 1.1.1.2
Merging in from winehq, everything except ddraw.
Still working out kinks in winelib & dinput.

Revision 1.1.1.1 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Sep 8 01:44:00 2000 UTC (8 years, 2 months ago) by gavriels
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-090700, merge-231100-start, andrew-071100-start, andrew-071100-premerge, andrew-071100-postmerge
Branch point for: mipmap, merge-231100, andrew-071100
Changes since 1.1: +0 -0 lines
Diff to previous 1.1
Import of WineHQ 090700

Revision 1.1 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Sep 8 01:44:00 2000 UTC (8 years, 2 months ago) by gavriels
Branch point for: winehq-ddraw-merge, winehq
Initial revision

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Diffs between and
Type of Diff should be a

View only Branch:

Sort log by:

CVS Admin
Powered by
ViewCVS 1.0-dev