- 10 Jul, 2008 4 commits
-
-
David Anderson authored
libcudart{32,64}.so is bundled with client. client loads it and if successful calls the device-query functions. - client, Linux: append the current directory (i.e., the BOINC data directory) to the LD_LIBRARY_PATH for apps. This goes after the project dir and the slot dir. This lets apps link to libcudartX.so. NOTE: this is not recommended; better to include it with your app. - client: allow for multiple messages from coproc probing - fixed indentation in cs_platforms.C svn path=/trunk/boinc/; revision=15591
-
Rom Walton authored
svn path=/trunk/boinc/; revision=15590
-
Rom Walton authored
client/ main.C svn path=/trunk/boinc/; revision=15588
-
Charlie Fenton authored
MGR: Change wxEVT_DRAW_BARGRAPH from 10000 to 12000 to avoid possible conflict with wxEVT_FRAME_ALERT svn path=/trunk/boinc/; revision=15587
-
- 09 Jul, 2008 8 commits
-
-
Rom Walton authored
win_build/installerv2/redist/Windows/src/boinccas/ CAMigrateBOINCData.cpp CAVerifyInstallDirectories.cpp svn path=/trunk/boinc/; revision=15585
-
Rom Walton authored
(ANSI/Unicode compatible)(VS/GCC compatible) clientgui/ ViewWork.cpp ViewWorkGrid.cpp svn path=/trunk/boinc/; revision=15584
-
Charlie Fenton authored
svn path=/trunk/boinc/; revision=15583
-
Charlie Fenton authored
svn path=/trunk/boinc/; revision=15582
-
Charlie Fenton authored
svn path=/trunk/boinc/; revision=15578
-
Charlie Fenton authored
svn path=/trunk/boinc/; revision=15577
-
Charlie Fenton authored
svn path=/trunk/boinc/; revision=15576
-
Rom Walton authored
NOTE: the data type 'char' should NOT be used within the various views. This is the classic example of how direct data access messes things up in projects with many developers. Use wxString with the PrintF method instead. clientgui/ ViewWork.cpp ViewWorkGrid.cpp svn path=/trunk/boinc/; revision=15574
-
- 08 Jul, 2008 11 commits
-
-
Eric J. Korpela authored
apps. svn path=/trunk/boinc/; revision=15573
-
Rom Walton authored
svn path=/trunk/boinc/; revision=15572
-
David Anderson authored
svn path=/trunk/boinc/; revision=15570
-
David Anderson authored
(I broke this a few days ago) - client: improve message for file upload server errors svn path=/trunk/boinc/; revision=15569
-
Eric J. Korpela authored
to a wide character string. For example L"Hi " "There" works in GCC but not in some compilers because L"Hi " has a different type than "There". This primarily shows up in SunStudio compilers. The fix is ugly, but it works. svn path=/trunk/boinc/; revision=15568
-
Rom Walton authored
the install directory or the data directory. Prevent this from both the UI component of setup, and if the situation is detected from the migration custom action, skip migration. win_build/installerv2/redist/Windows/src/boinccas/ boinccas.rc CAMigrateBOINCData.cpp CAVerifyInstallDirectories.cpp win_build/installerv2/redist/Windows/Win32/ boinccas.dll boinccas95.dll win_build/installerv2/redist/Windows/x64/ boinccas.dll boinccas95.dll svn path=/trunk/boinc/; revision=15567
-
Rytis Slatkevičius authored
svn path=/trunk/boinc/; revision=15566
-
Eric J. Korpela authored
svn path=/trunk/boinc/; revision=15562
-
Charlie Fenton authored
MGR: Use std::stable_sort to stop rows with equal values in the sort column changing places randomly svn path=/trunk/boinc/; revision=15561
-
Charlie Fenton authored
svn path=/trunk/boinc/; revision=15560
-
Charlie Fenton authored
svn path=/trunk/boinc/; revision=15559
-
- 07 Jul, 2008 1 commit
-
-
Eric J. Korpela authored
Fixed typo in Makefile.am svn path=/trunk/boinc/; revision=15555
-
- 06 Jul, 2008 1 commit
-
-
David Anderson authored
svn path=/trunk/boinc/; revision=15553
-
- 04 Jul, 2008 2 commits
-
-
David Anderson authored
- web: in get_logged_in_user(), check for bad user agent types (a bit of spam-resistance) svn path=/trunk/boinc/; revision=15552
-
David Anderson authored
1) the assimilator creates a job_summary_WUID file saying - what host did the job - error status if any - info about missing output files 2) all output files are now optional. 3) the assimilator deletes temp files (templates, job dir file) svn path=/trunk/boinc/; revision=15551
-
- 03 Jul, 2008 5 commits
-
-
David Anderson authored
svn path=/trunk/boinc/; revision=15549
-
David Anderson authored
Otherwise, in compound apps we'll have both monitor and worker reading the messages; this is a race condition and will lead to spurious "no heartbeat" exits. svn path=/trunk/boinc/; revision=15548
-
David Anderson authored
svn path=/trunk/boinc/; revision=15547
-
Rom Walton authored
actions that deal with user rights and privileges and user accounts. - WINSETUP: Add some basic benchmarking code for user rights and privileges win_build/installerv2/redist/Windows/src/boinccas/ CACreateBOINCAccounts.cpp CACreateBOINCGroups.cpp CAGrantBOINCAdminsRights.cpp CAGrantBOINCMasterRights.cpp CAGrantBOINCProjectRights.cpp CAGrantBOINCProjectsRights.cpp CAGrantBOINCUsersRights.cpp CAMigrateBOINCData.cpp svn path=/trunk/boinc/; revision=15546
-
David Anderson authored
svn path=/trunk/boinc/; revision=15545
-
- 02 Jul, 2008 7 commits
-
-
David Anderson authored
in scheduler request messages, without checking its contents. One user had apparently edited global_prefs.xml with an XML editor; it had an <?xml tag at the start, and had been collapsed into a single line with no newlines, and no newline at the end. This caused all scheduler requests from that client to get "Incomplete request" responses. The long-term fix is for the client to verify global_prefs.xml, and for the scheduler to parse it with XML_PARSER. As a short-term fix, I made these changes: - If the scheduler reads a line that's too long, it ignores it. - The scheduler ignores <?xml svn path=/trunk/boinc/; revision=15543
-
David Anderson authored
svn path=/trunk/boinc/; revision=15542
-
David Anderson authored
mostly so that the parse function could assume that everything was initially zero. However, various back-end functions pass around SCHED_CONFIG& as an argument (also named "config"). This creates a shadow, which is always bad. Worse is the possibility that some projects have back-end programs that have a SCHED_CONFIG variable that's automatic, and therefore isn't zero initially, and therefore isn't parsing correctly. To fix this, I changed the 2 vectors in SCHED_CONFIG into pointers, and have the parse routine zero the structure. I was tempted to remove the SCHED_CONFIG& args to back-end functions, but this would have broken some projects' code. I did, however, change the name from config to config_loc to avoid shadowing. Also fixed various other compiler warnings. svn path=/trunk/boinc/; revision=15541
-
Charlie Fenton authored
svn path=/trunk/boinc/; revision=15540
-
Charlie Fenton authored
svn path=/trunk/boinc/; revision=15539
-
Charlie Fenton authored
svn path=/trunk/boinc/; revision=15538
-
Charlie Fenton authored
svn path=/trunk/boinc/; revision=15537
-
- 01 Jul, 2008 1 commit
-
-
David Anderson authored
an automatic var SCHED_CONFIG (hence nonzero) - make_project: include xadd in list of instructions - boinc_submit: fix bugs in --stdin svn path=/trunk/boinc/; revision=15536
-