Module: wine
Branch: refs/heads/master
Commit: 2cb0f43224db9e4ab8717ad0b1738c8debdb195e
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=2cb0f43224db9e4ab8717ad…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed Jul 19 14:12:58 2006 +0200
kernel: Added support for exec'ing a new Win32 process.
Use it to restart execution if the main binary can't be loaded because
of address space conflicts, and also for Win16/DOS support.
---
dlls/kernel/process.c | 120 +++++++++++++++++++++++++++++++------------------
dlls/ntdll/virtual.c | 9 +---
2 files changed, 80 insertions(+), 49 deletions(-)
Diff: http://source.winehq.org/git/?p=wine.git;a=commitdiff;h=2cb0f43224db9e4ab87…
ChangeSet ID: 26651
CVSROOT: /opt/cvs-commit
Module name: appdb
Changes by: wineowner(a)winehq.org 2006/07/19 11:37:54
Modified files:
cron : cleanup.php
include : incl.php query.php
tables : create_tables
unit_test : run_tests.php
Added files:
include : error_log.php
tables : error_log.sql
unit_test : test_error_log.php
Log message:
Chris Morgan <cmorgan(a)alum.wpi.edu>
Modify query_error() to log errors to a database table instead of displaying them on the screen. This should
let us more easily debug difficult or intermittent issues that users may not report. Add a cron to report logged
errors to appdb admins every night. Implement some basic unit tests for the new error logging code
Patch: http://cvs.winehq.org/patch.py?id=26651
Old revision New revision Changes Path
1.29 1.30 +10 -1 appdb/cron/cleanup.php
1.36 1.37 +1 -0 appdb/include/incl.php
1.3 1.4 +4 -5 appdb/include/query.php
Added 1.1 +0 -0 appdb/include/error_log.php
1.7 1.8 +2 -0 appdb/tables/create_tables
Added 1.1 +0 -0 appdb/tables/error_log.sql
1.4 1.5 +3 -1 appdb/unit_test/run_tests.php
Added 1.1 +0 -0 appdb/unit_test/test_error_log.php