CVS log for winex/scheduler/client.c

(logo)

ViewCVS and CVS Help

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

Request diff between arbitrary revisions


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

Revision 1.55 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Aug 1 12:22:52 2007 UTC (15 months, 3 weeks ago) by mark
CVS Tags: HEAD
Changes since 1.54: +12 -2 lines
Diff to previous 1.54
- 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.54 - (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.53: +10 -4 lines
Diff to previous 1.53
Refactor SHM server to handle both POSIX and SYSV IPC.
Add support for SHM server on Mac OS X.

Revision 1.53 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jul 31 19:58:39 2007 UTC (15 months, 3 weeks ago) by mark
Changes since 1.52: +1 -1 lines
Diff to previous 1.52
Clarify reason for not enabling flush_key for the SHM; it's to help ensure the integrity of the .reg files

Revision 1.52 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jul 31 19:58:10 2007 UTC (15 months, 3 weeks ago) by mark
Changes since 1.51: +1 -0 lines
Diff to previous 1.51
Implement RegFlushKey.
Do some minor cleanups of duplicated functions.

Revision 1.51 - (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.50: +43 -1 lines
Diff to previous 1.50
- 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.50 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Mar 28 21:00:46 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.49: +1 -1 lines
Diff to previous 1.49
Don't bail if the USER environment variable isn't set.  Just use a default instead

Revision 1.49 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Mar 28 17:51:04 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.48: +1 -1 lines
Diff to previous 1.48
Handle data payload sent with send_unix_signal, allowing it to be returned
from recv_unix_signal. Additionally, send_unix_signal (slow version) is
allowed to wake up a suspended thread; recv_unix_signal will suspend it
again once it has handled all its pending signals.

Revision 1.48 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Mar 28 17:49:49 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.47: +1 -0 lines
Diff to previous 1.47
Additions to the wineserver protocol, making the send_unix_signal and
recv_unix_signal more flexible, by allowing specification of a process
as the signal destination, and the transmission of a data payload.

Revision 1.47 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Mar 27 20:25:03 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.46: +5 -4 lines
Diff to previous 1.46
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.46 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Mar 27 20:21:20 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.45: +5 -1 lines
Diff to previous 1.45
Changed the wineserver lock folder from PATH/wineserver-hostname to
PATH/wineserver-hostname-user. Also bumped the protocol version.

Revision 1.45 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Mar 27 17:51:51 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.44: +3 -0 lines
Diff to previous 1.44
Added a wineserver call to set the scheduling mode for a thread, with the
choices of "normal", "internal" (using realtime priority class), or
"blocked" (exempt from scheduling).

Revision 1.44 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Mar 27 17:22:25 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.43: +8 -2 lines
Diff to previous 1.43
Force Sleep() calls through the wineserver if the scheduler is enabled.

Revision 1.43 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Mar 27 17:07:53 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.42: +38 -0 lines
Diff to previous 1.42
Config option for turning on the upcoming scheduler:

[Wineserver]
"Scheduler" = "Y"

Revision 1.42 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Mar 27 17:02:13 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.41: +4 -0 lines
Diff to previous 1.41
Allow recv_unix_signal and send_unix_signal to be shmserver calls.

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

Revision 1.40 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Mar 27 16:56:47 2007 UTC (19 months, 3 weeks ago) by daniel
Changes since 1.39: +27 -1 lines
Diff to previous 1.39
Add a wrapper for the shared_server_complete_poll() call which blocks
asynchronous signals while it's running.

Revision 1.39 - (download), view (text) (markup) (annotate) - [select for diffs]
Mon Mar 14 18:33:08 2005 UTC (3 years, 8 months ago) by gavriels
CVS Tags: cedega-4-3
Changes since 1.38: +5 -2 lines
Diff to previous 1.38
Explicitly disabling the preloader must work for child processes as well.
Add an explicit check for the preloader having been disabled.

Revision 1.38 - (download), view (text) (markup) (annotate) - [select for diffs]
Sat Mar 5 00:23:23 2005 UTC (3 years, 8 months ago) by david
Changes since 1.37: +6 -3 lines
Diff to previous 1.37
make the preloader restart itself with argv[0] being the binary it
is going to load. This gives us a sane ps output (and killall target).
Had to move the preloader's --server command argument to an env var as a result.

Revision 1.37 - (download), view (text) (markup) (annotate) - [select for diffs]
Sat Mar 5 00:13:28 2005 UTC (3 years, 8 months ago) by david
Changes since 1.36: +195 -44 lines
Diff to previous 1.36
This adds support for prelink, execshield and a work around for the legacy va layout problem.
This is done through the implementation for a preloader.

Revision 1.36 - (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.35: +3 -3 lines
Diff to previous 1.35
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.35 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Jan 21 22:18:39 2005 UTC (3 years, 10 months ago) by peter
Changes since 1.34: +1 -1 lines
Diff to previous 1.34
At least print the right system call so we don't have two sendmsg cases.

Revision 1.34 - (download), view (text) (markup) (annotate) - [select for diffs]
Mon Nov 15 15:42:44 2004 UTC (4 years ago) by peter
Changes since 1.33: +6 -2 lines
Diff to previous 1.33
Portability fixes. Based off patch from Bruce M Simpson for FreeBSD.

Revision 1.33 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Aug 13 18:22:13 2004 UTC (4 years, 3 months ago) by peter
Changes since 1.32: +8 -0 lines
Diff to previous 1.32
Add profile for fast shm calls to get rough idea of cool things that are
happening in the wineserver and inter thread contention for the wineserver.

Revision 1.32 - (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.31: +3 -3 lines
Diff to previous 1.31
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.31 - (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.30: +3 -0 lines
Diff to previous 1.30
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.30 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jul 27 18:44:04 2004 UTC (4 years, 3 months ago) by gavriels
Changes since 1.29: +3 -0 lines
Diff to previous 1.29
Check in cdrom eject handling code. This code will force the immediate
closure of all active fds on CDROM drives when the wineserver receives a
USR2 signal.  More work remains to poll the CD hardware for user eject
requests, but this patch allows several previously broken multi-cd
installers to work.

Revision 1.29 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Jul 8 15:58:59 2004 UTC (4 years, 4 months ago) by peter
Changes since 1.28: +1 -1 lines
Diff to previous 1.28
Speed up get_handle_fd operations.

Revision 1.28 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Jul 8 15:57:17 2004 UTC (4 years, 4 months ago) by peter
Changes since 1.27: +5 -14 lines
Diff to previous 1.27
Remove some client traces, make shm wineserver calls distinguishable by a
0001: vs the wineserver having 0001::
+client now completely controls if that process is to dump shm wineserver
information and +server remains exclusively for the wineserver process.

Revision 1.27 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Jul 8 15:44:51 2004 UTC (4 years, 4 months ago) by peter
Changes since 1.26: +3 -3 lines
Diff to previous 1.26
Fix REQ_resolve_rpc_endpoint so it can be reenabled. Other rpc calls are still
incorrect even potentially for non shm wineserver case.

Revision 1.26 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jun 29 15:36:22 2004 UTC (4 years, 4 months ago) by peter
Changes since 1.25: +1 -25 lines
Diff to previous 1.25
Should fix multidisc installers by merging the ctx fd cache and the handle
cache. Also removes limitation that only pthread systems can have sych
acceleration. An a couple of other small things for fun.

Revision 1.25 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jun 29 15:28:53 2004 UTC (4 years, 4 months ago) by peter
Changes since 1.24: +3 -3 lines
Diff to previous 1.24
It appears that the rpc code in the server uses a non standard idiom
to send and decode a number of variable arguments that doesn't play
at all with FAST_VAR_DATA. For the time being just turn off these
particular calls off so that the FAST_VAR_DATA can remain on.
This will be fixed properly later.

Revision 1.24 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jun 29 15:20:16 2004 UTC (4 years, 4 months ago) by peter
Changes since 1.23: +5 -0 lines
Diff to previous 1.23
If we're using pthread emulation we can't accelerate WaitForMultipleObjects
because it uses malloc.

Revision 1.23 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jun 29 15:13:16 2004 UTC (4 years, 4 months ago) by peter
Changes since 1.22: +1 -1 lines
Diff to previous 1.22
Someone should send the cut and paste thinko police after me. Soon.
Actually connect to the fd-server rather an the wineserver twice.

Revision 1.22 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jun 29 15:12:46 2004 UTC (4 years, 4 months ago) by peter
Changes since 1.21: +26 -34 lines
Diff to previous 1.21
It appears my previous "fix" broke process spawning. Silly me. Should be
fixed now. We were recreating a new wineserver for each process and
severing the links to the old one. Not good.

Revision 1.21 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jun 29 15:05:48 2004 UTC (4 years, 4 months ago) by peter
Changes since 1.20: +65 -25 lines
Diff to previous 1.20
Better handle a crash in the wineserver and the sockets which can remain
hanging around.

Revision 1.20 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jun 29 15:05:05 2004 UTC (4 years, 4 months ago) by peter
Changes since 1.19: +2 -1 lines
Diff to previous 1.19
Clean up possible race condition where server deletes poll list that client
is still using.

Revision 1.19 - (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.18: +7 -8 lines
Diff to previous 1.18
Initial pass at small integer thread/process IDs. Needs to be tweaked
in the future to unbreak 16bit window hooks.

Revision 1.18 - (download), view (text) (markup) (annotate) - [select for diffs]
Tue Jun 29 14:17:14 2004 UTC (4 years, 4 months ago) by peter
Changes since 1.17: +151 -86 lines
Diff to previous 1.17
Start of SHM phase 2.
multi disc installers are broken and there are several bugs/races remaining
Simple benchmarking shows 5 time throughput improvement.

Revision 1.17 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Apr 29 14:40:25 2004 UTC (4 years, 6 months ago) by peter
Changes since 1.16: +1 -1 lines
Diff to previous 1.16
REQ_destroy_window doesn't actually really work right now.

Revision 1.16 - (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.15: +502 -7 lines
Diff to previous 1.15
First phase of SHM wineserver. Only the simple calls are accelerated.
shm calls are output to client debug channel.

Revision 1.15 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Feb 18 22:27:50 2004 UTC (4 years, 9 months ago) by david
Changes since 1.14: +1 -1 lines
Diff to previous 1.14
* change all occurances of *_DEBUG_CHANNEL to WINE_*_DEBUG_CHANNEL
* remove the #define's for *_DEBUG_CHANNEL

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

Revision 1.14 - (download), view (text) (markup) (annotate) - [select for diffs]
Fri Jul 25 21:45:36 2003 UTC (5 years, 3 months ago) by hunnise
CVS Tags: winex-sims-3-2, winex-3-3-2, winex-3-3-1, winex-3-3, winex-3-2-1, winex-3-2, winex-3-1-99, start-merge-6oct03, dec3-internal-merge
Branch point for: winex-sims-3-2-branch, winex-3-3-branch, winex-3-2-branch
Changes since 1.13: +1 -1 lines
Diff to previous 1.13
Finally get around to changing all uses of debugtools.h -> wine/debug.h

Revision 1.13 - (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.12: +3 -3 lines
Diff to previous 1.12
Some warning fixes.

Revision 1.12 - (download), view (text) (markup) (annotate) - [select for diffs]
Thu Jun 12 09:00:12 2003 UTC (5 years, 5 months ago) by ovek
Changes since 1.11: +1 -0 lines
Diff to previous 1.11
Added SIGUSR1, used by x11drv for GLX context migration, to the blocking
set used for wineserver communication.

Revision 1.11 - (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.10: +3 -3 lines
Diff to previous 1.10
Big wacking commit. Add most of the remaining pthread support.

Revision 1.10 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Jan 16 19:49:07 2002 UTC (6 years, 10 months ago) by ovek
CVS Tags: winex-kohan-2-1, winex-3-0-pre-1, winex-3-0, winex-2-2-1, winex-2-2, winex-2-1, winex-2-0-branch-merge-to-head, winex-2-0, quartz-pre-removal, quartz-post-removal, head_merge_from_winex_2_0_branch
Branch point for: winex-2-0-branch
Changes since 1.9: +6 -6 lines
Diff to previous 1.9
Merge of WineHQ CVS at Jan 16, 2002.

Revision 1.1.1.17 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Wed Jan 16 19:07:10 2002 UTC (6 years, 10 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20020116, wine-20020228, rewind-20030217, rewind-20020925, rewind-20020804, rewind-20020607, rewind-20020427, rewind-20020419
Changes since 1.1.1.16: +6 -6 lines
Diff to previous 1.1.1.16
Import of WineHQ CVS at Jan 16, 2002.

Revision 1.9 - (download), view (text) (markup) (annotate) - [select for diffs]
Mon Dec 31 16:06:22 2001 UTC (6 years, 10 months ago) by ovek
Changes since 1.8: +22 -13 lines
Diff to previous 1.8
Comment out Andrew's wineserver protocol changes until I (or someone else)
figures out its purpose.

Revision 1.8 - (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.7: +60 -70 lines
Diff to previous 1.7
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.16 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Mon Dec 31 10:52:34 2001 UTC (6 years, 10 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: wine-20011226
Changes since 1.1.1.15: +60 -96 lines
Diff to previous 1.1.1.15
Import of Wine release 20011226.
(The tree before this import has been tagged wine-premerge-20011226)

Revision 1.7 - (download), view (text) (markup) (annotate) - [select for diffs]
Sat Nov 3 03:02:50 2001 UTC (7 years ago) by andrewlewycky
CVS Tags: wine-premerge-20011226
Changes since 1.6: +102 -11 lines
Diff to previous 1.6
Support for recursive server calls.
The exception handler needs some fixing.

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

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

Revision 1.5 - (download), view (text) (markup) (annotate) - [select for diffs]
Sat Oct 13 23:26:47 2001 UTC (7 years, 1 month ago) by ovek
CVS Tags: winehq-premerge-20010824-postmerge-20011014
Changes since 1.4: +9 -0 lines
Diff to previous 1.4
Merge back the winehq-premerge-20010824 branch.

Revision 1.2.2.1 - (download), view (text) (markup) (annotate) - [select for diffs]
Sat Oct 6 22:21:27 2001 UTC (7 years, 1 month ago) by andrewlewycky
Branch: winehq-premerge-20010824
CVS Tags: winehq-premerge-20010824-20011014, Oct1201, Oct1101
Changes since 1.2: +9 -0 lines
Diff to previous 1.2 , to next main 1.3
Delete the socket if we can't connect to the server.

Revision 1.4 - (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
Changes since 1.3: +2 -0 lines
Diff to previous 1.3
Merge from WineHQ CVS on at Oct 4, 2001.

Revision 1.1.1.14 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Thu Oct 4 13:48:48 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.13: +2 -0 lines
Diff to previous 1.1.1.13
Import of WineHQ CVS at Oct 4, 2001.

Revision 1.3 - (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.2: +1 -2 lines
Diff to previous 1.2
Merge of Wine release 20010824 (only resolved CVS conflicts so far).

Revision 1.1.1.13 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Wed Aug 29 18:24:43 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.12: +1 -2 lines
Diff to previous 1.1.1.12
Import of Wine release 20010824.

Revision 1.2 - (download), view (text) (markup) (annotate) - [select for diffs]
Wed Jul 11 03:10:56 2001 UTC (7 years, 4 months ago) by gavriels
CVS Tags: winehq-premerge-20010824-start
Branch point for: winehq-premerge-20010824
Changes since 1.1: +249 -145 lines
Diff to previous 1.1
Integrate updated version of Gerard Patel's deferred trace patch.  This
allows us to do -debugmsg +whatever and not generate output until
Alt F12 is pressed.  This is extremely useful for debugging purposes,
but Alexandre doesn't want it in the WineHQ tree as he seems to want
to wait for a more sophisticated and general debug control technique
being worked on by Rob Farnum at CodeWeavers.

It should be pretty straightforwards to back this patch out once
the new system is available, if ever...

 -Gav

Revision 1.1.1.12 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri May 11 08:42:54 2001 UTC (7 years, 6 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: wine-20010510
Changes since 1.1.1.11: +7 -0 lines
Diff to previous 1.1.1.11
Import of Wine release 20010510.

Revision 1.1.1.11 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Sun Mar 18 09:32:10 2001 UTC (7 years, 8 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20010509, winehq-20010501, winehq-20010425, winehq-20010419, winehq-20010416, winehq-20010414, winehq-20010320, winehq-20010318, wine-20010418, wine-20010326
Changes since 1.1.1.10: +6 -7 lines
Diff to previous 1.1.1.10
Import of WineHQ CVS at Mar 18, 2001.

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

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

Revision 1.1.1.8 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Sat Jan 13 13:54:36 2001 UTC (7 years, 10 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20010129, winehq-20010126, winehq-20010123, winehq-20010117, winehq-20010113, wine-20010112
Changes since 1.1.1.7: +2 -2 lines
Diff to previous 1.1.1.7
Import of Wine 20010112 (at Jan 13, 2001).

Revision 1.1.1.7 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Jan 5 08:03:26 2001 UTC (7 years, 10 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20010112, winehq-20010105
Changes since 1.1.1.6: +3 -3 lines
Diff to previous 1.1.1.6
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.6 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Dec 29 10:56:50 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.5: +2 -2 lines
Diff to previous 1.1.1.5
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.5 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Sat Dec 23 00:53:26 2000 UTC (7 years, 11 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20001223, wine-20001222
Changes since 1.1.1.4: +103 -54 lines
Diff to previous 1.1.1.4
Import of WineHQ CVS at Dec 23, 2000 (timezone=CET).
Wow, almost Christmas...

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

Revision 1.1.1.3 - (download), view (text) (markup) (annotate) - [select for diffs] (vendor branch)
Fri Dec 1 08:19:08 2000 UTC (7 years, 11 months ago) by ovek
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-20001206, winehq-011200
Changes since 1.1.1.2: +13 -10 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:00 2000 UTC (7 years, 11 months ago) by andrewl
Branch: winehq-ddraw-merge, winehq
CVS Tags: winehq-112300
Changes since 1.1.1.1: +10 -2 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: +10 -2 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:43:59 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:43:59 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