Commit Graph

426 Commits

Author SHA1 Message Date
David Anderson 79adf59f98 - client: if can't write state file, don't immediately exit,
but don't do anything other than handle GUI RPCs.
    After 50 secs, print an "about to exit" message.
    After 60 seconds, exit

svn path=/trunk/boinc/; revision=13162
2007-07-16 20:30:21 +00:00
David Anderson b9d7ecdc1a - client: run_if_user_active pref applies to both
network transfers and CPU usage.
    (Note: maybe we should have a separate pref for this).

svn path=/trunk/boinc/; revision=13131
2007-07-10 17:49:51 +00:00
David Anderson cdc65cd283 - Manager: if a job is running EDF, show "high priority" in status
- compile fixes for Charlie's next-to-last checkin
    
    client/
        client_state.h
        cpu_sched.C
        sim.h
        sim_util.C
    clientgui/
        ViewWork.cpp
        ViewWorkGrid.cpp

svn path=/trunk/boinc/; revision=13021
2007-06-25 19:05:29 +00:00
Charlie Fenton 7bb1b1a0d4 CC: Add logic to scheduler, etc. for systems which limit the number of shared memory segments per process and / or system-wide.
svn path=/trunk/boinc/; revision=13015
2007-06-25 11:46:15 +00:00
David Anderson 1e7e58875a - client: add cmdline options --exit_before_start and --exit_after_finish.
This cause the core client to exit immediately before or after
    running a job,
    letting you examine the contents of the slot directory.
- scheduler: changed max # of CPUs used in daily_result_quota
    limit from 4 to 8, and make it a compile-time parameter
- feeder/scheduler: make the number of work items in shared
    memory configurable (in config.xml).
    The element is <shmem_work_items>
- feeder: make the size of the work item query configurable
    (<feeder_query_size)
- feeder: remove code related to removing infeasible results
    from shared mem.
    This mechanism was never needed,
    and I think a timeout would accomplish the same effect.

client/
    app.C
    app_start.C
    client_state.C,h
    cs_cmdline.C
sched/
    feeder.C
    sched_array.C
    sched_config.C,h
    sched_send.C
    sched_shmem.C,h
    sched_util.C
    show_shmem.C

svn path=/trunk/boinc/; revision=12771
2007-05-29 21:45:01 +00:00
David Anderson 5bbcc6b3b6 - client: fix bug where:
1) client wakes up from hibernate
    2) one or more network ops start (e.g. because backoff expired)
    3) ops fail because DNS system isn't up yet
    4) connect to reference site fails too
    5) user sees "please create physical connection",
        even though there's been a physical connection the whole time.
    Solution:
    - keep track of "last wakeup time": the last time the
        time of day (measured in poll_slow_events())            increased by more than 10 times the polling interval.
        This must be either coming out of hibernation,
        or the user resetting the system clock.
    - When a network operation fails, try to contact the reference site
        only if it's more than 30 seconds after the last wakeup time.

client/
    client_state.C,h
    net_stats.C

svn path=/trunk/boinc/; revision=12665
2007-05-14 21:45:02 +00:00
David Anderson bd8b0aed41 - core client: on attach to project,
if the initial sched request failed,
		the manager would show "communicating" for 60 sec,
		then time out and show "failed to attach".
		But the project would actually be attached.
		This was due to a logic error,
		but I fixed it in a more fundamental way:
		by considering an attach to be complete immediately,
		without waiting for a successful scheduler RPC.

		This was originally done to ensure that the URL and account key were valid.
		But when using the BOINC Manager, we've already verified
		both of these before doing the attach project RPC.

		When using boinc_cmd, you now have to check for messages
		indicating a bad URL or account key.
		I changed things to print these messages on every sched RPC.

		Implementation: the notion of "tentative project" no longer exists.

	client/
		client_state.C,h
		client_types.C,h
		cs_account.C
		cs_benchmarks.C
		cs_scheduler.C
		gui_rpc_server_ops.C
		scheduler_op.C
		sim.C
		sim_util.C

svn path=/trunk/boinc/; revision=12663
2007-05-14 19:18:45 +00:00
David Anderson 2853649d28 - core client: add <no_alt_platform> config option;
eliminates use of alternate platforms.

    client/
        client_state.h
        cs_platforms.C
        cs_statefile.C
        log_flags.C,h

svn path=/trunk/boinc/; revision=12600
2007-05-07 19:38:27 +00:00
David Anderson a6521f58e7 - core client: when parsing statefile or scheduler reply,
if get an app_version with unknown platform name, ignore it.
		This means that, e.g. if someone moves a BOINC directory
		from Intel to PowerPC Mac, things will still work right.

	client/
		client_state.C,h
		cs_platforms.C
		cs_scheduler.C
		cs_statefile.C

svn path=/trunk/boinc/; revision=12579
2007-05-06 20:22:39 +00:00
David Anderson 4a1741e220 - Core client: handle multiple platforms correctly.
Remove the tacet assumption that a host can handle
        applications for a single platform.
        With the Apr 30 scheduler changes,
        a project may (at different times)
        send app versions for the same app and version number,
        but different platforms.
        Before we would have ignored all but the first;
        now we handle them correctly.

        Implementation notes:
        - Add APP_VERSION.platform, RESULT.platform,
            and RESULT.version_num.
            If these are missing from an XML doc
            (e.g. an existing state file or a scheduler reply
            from a project not running current server)
            then set to the primary platform.
        - Continue to write workunit.version_num
            and active_task.version_num to state file,
            even though these are no longer part of the struct.
            This allows users to revert to an older version.

    client/
        app.C
        check_state.C
        client_state.C,h
        client_types.C,h
        cs_apps.C
        cs_scheduler.C
        cs_statefile.C
        sim.C

svn path=/trunk/boinc/; revision=12542
2007-05-03 17:14:30 +00:00
Rom Walton a100628ee8 - fixes #154:
* refactored the alternate platform mechinism so that we
          can support multiple alternate platforms.
        * moved everything to cs_platforms.C since we expect the
          kind of sprawl that is in host_info.C on the *nix
          environments.
    - Clean up some warnings
          
    client/
        acct_setup.C
        client_state.C, .h
        client_types.h
        cs_platforms.C (Added)
        cs_scheduler.C
        cs_statefile.C
        http_curl.C
    lib/
        str_util.h

svn path=/trunk/boinc/; revision=12531
2007-05-02 17:53:35 +00:00
Eric J. Korpela 8a8ffc8ef9 Eric K 24 Apr 07
-  Exteded the "altername_platform" mechanism to x86_64 linux
       and solaris.  The current alternate platforms found by configure
       are...
	 x86_64-pc-linux-gnu    -> i686-pc-linux-gnu
	 sparc64-sun-solaris    -> sparc-sun-solaris
	 sparc-sun-solaris      -> sparc-sun-solaris2.7
	 powerpc64-apple-darwin -> powerpc-apple-darwin
    -  The alternate platform can be overridden on the configure command line
         --with-boinc-alt-platform="platformname"

    m4/
        boinc_platform.m4
    sched/
        Makefile.am
    client/
        client_state.C
        cs_scheduler.C
        client_state.h


svn path=/trunk/boinc/; revision=12467
2007-04-25 02:02:24 +00:00
Rom Walton 3307404373 Fix build break introduced when windows_x86_64 support was added.
svn path=/trunk/boinc/; revision=12456
2007-04-23 22:25:19 +00:00
Rom Walton ac6974b62b Rom 19 Apr 2007
- Fix a minor compile problem on 64-bit Windows platforms with the
        call to SetTimer.
    - fixes #80: Introduce the notion of an alternate platform for 64-bit
        Windows clients, which can also run 32-bit Windows apps.
        
      TODO: We'll need to refactor the whole platform section in the
        scheduler request creation section so that it can handle
        multiple alternate platforms and for Linux/Mac.
        
    api/
        windows_opengl.C
    client/
        client_state.C, .h
        cpp.h
        cs_scheduler.C

svn path=/trunk/boinc/; revision=12421
2007-04-19 20:53:16 +00:00
David Anderson 3f915e647f svn path=/trunk/boinc/; revision=12407 2007-04-17 22:24:53 +00:00
David Anderson 3eaea4fb71 *** empty log message ***
svn path=/trunk/boinc/; revision=12347
2007-04-11 21:49:57 +00:00
David Anderson 11869bc0be *** empty log message ***
svn path=/trunk/boinc/; revision=12333
2007-04-09 02:17:26 +00:00
David Anderson 275427c9a2 *** empty log message ***
svn path=/trunk/boinc/; revision=12304
2007-04-03 20:30:44 +00:00
David Anderson 8ee50511de *** empty log message ***
svn path=/trunk/boinc/; revision=12277
2007-03-28 21:30:45 +00:00
David Anderson b5dbce7b3f *** empty log message ***
svn path=/trunk/boinc/; revision=12273
2007-03-27 18:36:22 +00:00
David Anderson 035642f298 *** empty log message ***
svn path=/trunk/boinc/; revision=12244
2007-03-19 19:13:40 +00:00
David Anderson 6984ec8cf4 *** empty log message ***
svn path=/trunk/boinc/; revision=12233
2007-03-15 19:08:22 +00:00
David Anderson 138f17af40 *** empty log message ***
svn path=/trunk/boinc/; revision=12216
2007-03-13 19:33:27 +00:00
David Anderson 2b67a5e84e *** empty log message ***
svn path=/trunk/boinc/; revision=12185
2007-03-04 02:30:48 +00:00
David Anderson 6b4803d969 *** empty log message ***
svn path=/trunk/boinc/; revision=12146
2007-02-23 20:24:52 +00:00
David Anderson 4d76b40d04 *** empty log message ***
svn path=/trunk/boinc/; revision=12144
2007-02-23 17:29:19 +00:00
David Anderson 81effa6a7b *** empty log message ***
svn path=/trunk/boinc/; revision=12127
2007-02-21 16:26:51 +00:00
David Anderson 47f8a509fe *** empty log message ***
svn path=/trunk/boinc/; revision=11981
2007-01-26 18:38:17 +00:00
David Anderson 3f17de9d9d *** empty log message ***
svn path=/trunk/boinc/; revision=11971
2007-01-25 21:36:27 +00:00
David Anderson 6a10211584 *** empty log message ***
svn path=/trunk/boinc/; revision=11960
2007-01-24 22:55:00 +00:00
David Anderson 5ac8ba3150 *** empty log message ***
svn path=/trunk/boinc/; revision=11721
2006-12-26 00:37:25 +00:00
David Anderson 86ad19ce5f *** empty log message ***
svn path=/trunk/boinc/; revision=11672
2006-12-14 00:42:43 +00:00
David Anderson b404379448 *** empty log message ***
svn path=/trunk/boinc/; revision=11658
2006-12-13 00:54:27 +00:00
David Anderson 41eb40b051 *** empty log message ***
svn path=/trunk/boinc/; revision=11643
2006-12-11 23:42:54 +00:00
David Anderson dcf1b946db *** empty log message ***
svn path=/trunk/boinc/; revision=11589
2006-11-26 02:06:30 +00:00
David Anderson 0a3a6fa5d7 *** empty log message ***
svn path=/trunk/boinc/; revision=11560
2006-11-21 18:41:27 +00:00
David Anderson 6f6f62c955 *** empty log message ***
svn path=/trunk/boinc/; revision=11515
2006-11-10 17:55:22 +00:00
David Anderson 3bb15a56cf *** empty log message ***
svn path=/trunk/boinc/; revision=11503
2006-11-09 17:01:08 +00:00
David Anderson 92a34648a6 *** empty log message ***
svn path=/trunk/boinc/; revision=11494
2006-11-08 00:20:16 +00:00
David Anderson 1018cfcb67 *** empty log message ***
svn path=/trunk/boinc/; revision=11326
2006-10-20 15:56:22 +00:00
David Anderson 96ce7efd77 *** empty log message ***
svn path=/trunk/boinc/; revision=11239
2006-10-03 19:44:54 +00:00
David Anderson 119ef5da01 *** empty log message ***
svn path=/trunk/boinc/; revision=11231
2006-10-02 23:42:38 +00:00
David Anderson 59d5508392 *** empty log message ***
svn path=/trunk/boinc/; revision=11107
2006-09-05 19:00:59 +00:00
David Anderson 7ce1144b73 *** empty log message ***
svn path=/trunk/boinc/; revision=11076
2006-09-01 21:06:30 +00:00
David Anderson 886604d12c *** empty log message ***
svn path=/trunk/boinc/; revision=11038
2006-08-29 20:39:44 +00:00
David Anderson d079ddd589 startup sequence
svn path=/trunk/boinc/; revision=11000
2006-08-24 20:33:46 +00:00
Rom Walton 5acec81450 *** empty log message ***
svn path=/trunk/boinc/; revision=10993
2006-08-23 22:16:19 +00:00
David Anderson 0e5c16169f *** empty log message ***
svn path=/trunk/boinc/; revision=10989
2006-08-23 21:14:47 +00:00
David Anderson 20dea204ca *** empty log message ***
svn path=/trunk/boinc/; revision=10972
2006-08-22 20:58:57 +00:00
David Anderson 44658e81e5 *** empty log message ***
svn path=/trunk/boinc/; revision=10912
2006-08-14 22:11:53 +00:00
David Anderson c7fe57ad41 *** empty log message ***
svn path=/trunk/boinc/; revision=10878
2006-08-10 17:36:28 +00:00
David Anderson b10e4c7b75 *** empty log message ***
svn path=/trunk/boinc/; revision=10848
2006-08-07 03:56:34 +00:00
David Anderson fc40d79af2 *** empty log message ***
svn path=/trunk/boinc/; revision=10846
2006-08-07 00:31:28 +00:00
David Anderson b340041cf5 *** empty log message ***
svn path=/trunk/boinc/; revision=10829
2006-08-03 16:39:57 +00:00
David Anderson b702fd0810 *** empty log message ***
svn path=/trunk/boinc/; revision=10824
2006-08-03 04:07:18 +00:00
David Anderson a54b7162a0 *** empty log message ***
svn path=/trunk/boinc/; revision=10747
2006-07-25 16:45:21 +00:00
David Anderson 4f5401188c *** empty log message ***
svn path=/trunk/boinc/; revision=10659
2006-07-17 22:18:17 +00:00
David Anderson 379e5303d3 *** empty log message ***
svn path=/trunk/boinc/; revision=10652
2006-07-14 21:08:12 +00:00
David Anderson c322094210 *** empty log message ***
svn path=/trunk/boinc/; revision=10644
2006-07-13 04:01:04 +00:00
David Anderson 885b54c4e8 work fetch
svn path=/trunk/boinc/; revision=10609
2006-07-10 00:46:07 +00:00
David Anderson 0d8462f7d2 *** empty log message ***
svn path=/trunk/boinc/; revision=10542
2006-06-28 16:56:15 +00:00
David Anderson 41a5e8c63d get simple GUI info
svn path=/trunk/boinc/; revision=10527
2006-06-27 21:46:50 +00:00
David Anderson a951f5e9c1 *** empty log message ***
svn path=/trunk/boinc/; revision=10432
2006-06-21 17:34:55 +00:00
David Anderson 37248491e4 *** empty log message ***
svn path=/trunk/boinc/; revision=10414
2006-06-20 19:34:42 +00:00
David Anderson 3c80d4726f verify-files-on-app-start option
svn path=/trunk/boinc/; revision=10413
2006-06-20 17:36:28 +00:00
David Anderson c745174e90 *** empty log message ***
svn path=/trunk/boinc/; revision=10402
2006-06-19 22:20:24 +00:00
David Anderson 89930e4aa8 *** empty log message ***
svn path=/trunk/boinc/; revision=10400
2006-06-19 17:40:53 +00:00
David Anderson 8ae95c73a8 *** empty log message ***
svn path=/trunk/boinc/; revision=10397
2006-06-19 16:21:35 +00:00
David Anderson 1fa2e3de0a *** empty log message ***
svn path=/trunk/boinc/; revision=10393
2006-06-19 04:29:26 +00:00
David Anderson 0a778b8e1e *** empty log message ***
svn path=/trunk/boinc/; revision=10387
2006-06-17 16:26:29 +00:00
David Anderson 9b448af477 *** empty log message ***
svn path=/trunk/boinc/; revision=10374
2006-06-16 18:52:25 +00:00
David Anderson f4ffa949de CPU scheduler
svn path=/trunk/boinc/; revision=10365
2006-06-15 23:15:27 +00:00
David Anderson be52784849 *** empty log message ***
svn path=/trunk/boinc/; revision=10296
2006-06-10 05:36:25 +00:00
David Anderson e1774afc16 *** empty log message ***
svn path=/trunk/boinc/; revision=10295
2006-06-10 05:27:28 +00:00
Charlie Fenton e9ddf9f268 *** empty log message ***
svn path=/trunk/boinc/; revision=10292
2006-06-09 23:57:41 +00:00
David Anderson 3199549ec8 *** empty log message ***
svn path=/trunk/boinc/; revision=10259
2006-06-07 00:09:05 +00:00
David Anderson 082ccd748c general prefs cleanup
svn path=/trunk/boinc/; revision=10242
2006-06-02 20:32:20 +00:00
David Anderson 584f227ed3 *** empty log message ***
svn path=/trunk/boinc/; revision=10239
2006-06-01 20:53:59 +00:00
David Anderson a5bca2d3e9 prefs and account managers
svn path=/trunk/boinc/; revision=10237
2006-06-01 19:03:00 +00:00
David Anderson 6c29f101bf CPU usage limit
svn path=/trunk/boinc/; revision=10168
2006-05-21 22:03:36 +00:00
David Anderson 805c004eb2 *** empty log message ***
svn path=/trunk/boinc/; revision=10129
2006-05-15 00:27:15 +00:00
Rom Walton eb6b058ddf *** empty log message ***
svn path=/trunk/boinc/; revision=9660
2006-03-16 20:29:44 +00:00
David Anderson 44052b53e6 reset all if platform changes
svn path=/trunk/boinc/; revision=9508
2006-02-18 08:33:23 +00:00
David Anderson 1d290cbd8c network status GUI RPC
svn path=/trunk/boinc/; revision=9424
2006-02-09 00:56:51 +00:00
David Anderson de1113c71a code reorg
svn path=/trunk/boinc/; revision=9421
2006-02-08 21:05:51 +00:00
David Anderson 00cafefdad cpu scheduling code cleanup
svn path=/trunk/boinc/; revision=9416
2006-02-07 23:08:23 +00:00
David Anderson f13d4d164f remove CPU sched code
svn path=/trunk/boinc/; revision=9414
2006-02-07 22:43:14 +00:00
David Anderson 14112fe14c global prefs override
svn path=/trunk/boinc/; revision=9413
2006-02-07 22:04:55 +00:00
David Anderson ea98755915 global prefs override file
svn path=/trunk/boinc/; revision=9412
2006-02-07 20:53:46 +00:00
David Anderson ab8ff092db detect lack of physical network connection
svn path=/trunk/boinc/; revision=9404
2006-02-06 22:23:04 +00:00
Rom Walton c6a2d33145 *** empty log message ***
svn path=/trunk/boinc/; revision=9403
2006-02-06 21:16:23 +00:00
David Anderson 32d14c4c68 back out scheduler changes
svn path=/trunk/boinc/; revision=9349
2006-01-30 21:13:49 +00:00
David Anderson f6b5d40731 new scheduler code, commented out
svn path=/trunk/boinc/; revision=9348
2006-01-30 20:01:47 +00:00
David Anderson dd5cfb52c0 CPU scheduler
svn path=/trunk/boinc/; revision=9338
2006-01-28 00:17:26 +00:00
David Anderson ba6a479fb4 CPU scheduler
svn path=/trunk/boinc/; revision=9336
2006-01-27 22:55:05 +00:00
David Anderson 6e73fe56ca debt calculation
svn path=/trunk/boinc/; revision=9329
2006-01-27 19:50:43 +00:00
David Anderson f886cb6f22 *** empty log message ***
svn path=/trunk/boinc/; revision=9314
2006-01-25 19:02:01 +00:00
David Anderson 0a8438794d host CPID fix
svn path=/trunk/boinc/; revision=9290
2006-01-23 18:59:05 +00:00
David Anderson b43a941ba9 update servers on CPID change
svn path=/trunk/boinc/; revision=9277
2006-01-20 20:41:51 +00:00
David Anderson 1bfed5d3cc duration correction factor enhancements
svn path=/trunk/boinc/; revision=9252
2006-01-17 07:30:28 +00:00
David Anderson b26b55e3a4 GUI RPCs tell if project has scheduler op in progress
svn path=/trunk/boinc/; revision=9240
2006-01-16 05:24:39 +00:00
David Anderson 9b8fbcc59f *** empty log message ***
svn path=/trunk/boinc/; revision=9141
2005-12-24 06:32:07 +00:00
David Anderson 9798e714c7 GUI RPC port specification
svn path=/trunk/boinc/; revision=9061
2005-12-13 08:04:57 +00:00
David Anderson 60b33d4b6c account manager changes
svn path=/trunk/boinc/; revision=9058
2005-12-09 22:29:21 +00:00
David Anderson 850587d93d code cleanup
svn path=/trunk/boinc/; revision=9039
2005-12-06 03:18:02 +00:00
David Anderson 00ccb0df61 -detach option for core client on Windows
svn path=/trunk/boinc/; revision=9016
2005-12-01 08:07:07 +00:00
David Anderson 9f9a477a84 Provide GUI RPC to get newer version info
svn path=/trunk/boinc/; revision=8848
2005-11-12 06:14:10 +00:00
David Anderson a3bebca949 new version check, host CPID fix
svn path=/trunk/boinc/; revision=8838
2005-11-10 06:03:39 +00:00
David Anderson b56b31363a more random password generation
svn path=/trunk/boinc/; revision=8753
2005-10-27 20:03:51 +00:00
David Anderson 0de3ff4fdf use modem connections fully
svn path=/trunk/boinc/; revision=8495
2005-10-05 19:34:54 +00:00
David Anderson 4bc558ffc8 disk usage fixes
svn path=/trunk/boinc/; revision=8442
2005-10-04 21:44:58 +00:00
Rom Walton fc2bd7133e *** empty log message ***
svn path=/trunk/boinc/; revision=8141
2005-09-22 08:46:51 +00:00
David Anderson a0bd24b348 version number fixes
svn path=/trunk/boinc/; revision=7715
2005-09-01 19:27:04 +00:00
David Anderson 20d9274d01 allow zero resource share
svn path=/trunk/boinc/; revision=7692
2005-08-31 18:20:06 +00:00
David Anderson 99c9679b63 versions are major/minor/release
svn path=/trunk/boinc/; revision=7614
2005-08-31 00:18:36 +00:00
David Anderson 041b6f24c6 *** empty log message ***
svn path=/trunk/boinc/; revision=7492
2005-08-25 23:07:58 +00:00
David Anderson 180e5a9c54 *** empty log message ***
svn path=/trunk/boinc/; revision=7409
2005-08-17 20:05:55 +00:00
David Anderson 60184934fd *** empty log message ***
svn path=/trunk/boinc/; revision=7366
2005-08-16 21:10:28 +00:00
David Anderson 66fbe0cfbe *** empty log message ***
svn path=/trunk/boinc/; revision=7360
2005-08-16 20:48:21 +00:00
David Anderson 262dc55a25 no trickles while net comm suspended
svn path=/trunk/boinc/; revision=7329
2005-08-15 05:08:42 +00:00
David Anderson 7c716dc8db attach project poll RPC
svn path=/trunk/boinc/; revision=7296
2005-08-13 03:19:22 +00:00
David Anderson 483912960e Curl
svn path=/trunk/boinc/; revision=7219
2005-08-09 22:01:28 +00:00
Rom Walton c60612875b *** empty log message ***
svn path=/trunk/boinc/; revision=7213
2005-08-09 09:55:45 +00:00
David Anderson b3dc4bcbe4 new account setup
svn path=/trunk/boinc/; revision=7205
2005-08-07 01:33:15 +00:00
Rom Walton 51389d099d *** empty log message ***
svn path=/trunk/boinc/; revision=7202
2005-08-06 19:20:26 +00:00
David Anderson 3ad888e260 new account setup support
svn path=/trunk/boinc/; revision=7194
2005-08-05 22:00:19 +00:00
David Anderson ded613f084 GUI HTTP class
svn path=/trunk/boinc/; revision=7192
2005-08-05 18:41:46 +00:00
David Anderson 8af3a9466e try file URLs in order
svn path=/trunk/boinc/; revision=6805
2005-07-26 11:55:28 +00:00
David Anderson 7c773fd533 *** empty log message ***
svn path=/trunk/boinc/; revision=6796
2005-07-24 18:23:56 +00:00
David Anderson 0d2a0ad9a3 *** empty log message ***
svn path=/trunk/boinc/; revision=6778
2005-07-23 08:10:39 +00:00
David Anderson 7ad2888c27 *** empty log message ***
svn path=/trunk/boinc/; revision=6429
2005-06-25 00:15:56 +00:00
David Anderson 6722611151 *** empty log message ***
svn path=/trunk/boinc/; revision=6423
2005-06-24 04:34:45 +00:00
David Anderson bf16b92bce *** empty log message ***
svn path=/trunk/boinc/; revision=6405
2005-06-23 00:15:05 +00:00
David Anderson 22935b4bb7 *** empty log message ***
svn path=/trunk/boinc/; revision=6393
2005-06-21 17:30:26 +00:00
David Anderson d05dc1b022 *** empty log message ***
svn path=/trunk/boinc/; revision=6389
2005-06-21 08:22:18 +00:00
David Anderson bf3525dc88 *** empty log message ***
svn path=/trunk/boinc/; revision=6387
2005-06-21 02:17:59 +00:00
David Anderson 5978dbedf4 *** empty log message ***
svn path=/trunk/boinc/; revision=6384
2005-06-19 20:14:14 +00:00
David Anderson 5e9e62b717 *** empty log message ***
svn path=/trunk/boinc/; revision=6379
2005-06-18 19:37:31 +00:00
David Anderson e39cec83f0 *** empty log message ***
svn path=/trunk/boinc/; revision=6356
2005-06-15 21:03:43 +00:00
David Anderson 28cc1fb011 *** empty log message ***
svn path=/trunk/boinc/; revision=6343
2005-06-14 20:31:15 +00:00
David Anderson c1d7bb6ef6 *** empty log message ***
svn path=/trunk/boinc/; revision=6333
2005-06-13 16:51:14 +00:00
David Anderson 289db963ab *** empty log message ***
svn path=/trunk/boinc/; revision=6325
2005-06-09 21:37:34 +00:00
David Anderson 23452f1583 *** empty log message ***
svn path=/trunk/boinc/; revision=6318
2005-06-09 05:43:35 +00:00
David Anderson 14f60e3fb6 *** empty log message ***
svn path=/trunk/boinc/; revision=6316
2005-06-08 23:55:21 +00:00
David Anderson c0588cba00 *** empty log message ***
svn path=/trunk/boinc/; revision=6298
2005-06-07 21:21:35 +00:00
David Anderson 9c07f39813 *** empty log message ***
svn path=/trunk/boinc/; revision=6292
2005-06-07 19:22:50 +00:00
David Anderson 359c5de98f *** empty log message ***
svn path=/trunk/boinc/; revision=6282
2005-06-02 21:38:20 +00:00
David Anderson 5e8150b9ae *** empty log message ***
svn path=/trunk/boinc/; revision=6273
2005-05-31 23:43:34 +00:00
David Anderson 47501371e6 *** empty log message ***
svn path=/trunk/boinc/; revision=6236
2005-05-24 05:39:37 +00:00
David Anderson 9cd02523b2 *** empty log message ***
svn path=/trunk/boinc/; revision=6081
2005-05-09 04:49:56 +00:00