forked from Milkyway-at-home/BOINC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkin_notes_2011
9776 lines (7867 loc) · 259 KB
/
checkin_notes_2011
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
David 1 Jan 2011
- fix some bad file permissions
- delist defunct stats site
clientgui/
DlgItemProperties.cpp,h
AsynRPC.cpp
html/inc/
stats_sites.inc
samples/
wrapper/
wrapper.cpp
example_app/
uc2.cpp
client/
sim_control.cpp
David 2 Jan 2011
- unix build: remove hardwired -ldl
lib/
Makefile.am
David 3 Jan 2011
- client: show a given system notice at most once a week
client/
client_msgs.cpp
sim_control.cpp
cs_notice.cpp
Charlie 4 Jan 2010
- Mac: Fix symbol table generation.
mac_build/
boinc.xcodeproj/
project.pbxproj
David 6 Jan 2011
- user web: fix bugs in server status page
- fix some indentation
html/user/
server_status.php
client/
*.cpp
David 6 Jan 2011
- simulator work
- fix some indentation
various files
David 11 Jan 2011
- client: use std::deque instead of std::vector
for RR sim's pending-job lists.
Erasing head of vector is slow.
- lib: allow GPU peak FLOPS to be specified in XML (for simulator)
- simulator work
- client: old work fetch policy: projects may need enough jobs
for all device instances, not just resource_share*ninst.
E.g. a project that has only CPU jobs in a CPU/GPU client
- client: with REC scheduling, don't ask for work for
secondary resources if project has negative priority.
- client: in RR sim, make sure we saturate devices if possible.
Otherwise we may report a shortfall incorrectly
client/
coproc_detect.cpp
cpu_sched.cpp
rr_sim.cpp,h
sim.cpp
sim_control.php
sim_scenario.php (new)
work_fetch.cpp,h
lib/
coproc.cpp,h
sched/
sched_customize.cpp
sched_types.cpp
David 11 Jan 2011
- client: set PROJECT::last_upload_start when a job completes,
NOT when its first upload starts.
This prevents a scheduler RPC from happening between the two.
This was a bug in [22841]
client/
cs_apps.cpp
pers_file_xfer.cpp
David 12 Jan 2011
- client: tweak [22842] so that system clock changes
of < 60 seconds are ignored
client/
client_state.h
Rom 12 Jan 2011
- MGR: Embed the BOINC skin in the executable using XPM files.
clientgui/res/skins/default/graphic/
<Various Files>
clientgui/
SkinManager.cpp
win_build/
boincmgr.vcproj
David 12 Jan 2011
- single-job submission system: don't hardwire i686 architecture;
make it work on any Linux system.
From Steffen Moller.
html/ops/
single_job_setup.php
Rom 13 Jan 2011
- MGR: Disable the background repaint events for the SGUI Messages and
SGUI Preferences dialog. Changing the font color wasn't as easy as
I had hoped and the black background for the skin doesn't do any
good when the text itself is black as well.
clientgui/
sg_DlgMessages.cpp
sg_DlgPreferences.cpp
David 13 Jan 2011
- scheduler/client/API: pass user ID and team ID from scheduler to client,
and from client to app (host ID is already passed).
E@h asked for this, not sure why.
client/
client_types.cpp,h
app_start.cpp
lib/
app_ipc.cpp,h
sched/
sched_types.cpp
Rom 13 Jan 2010
- MGR: re-enable background painting and just change the default background
color for the new default skin to light gray.
clientgui/
sg_DlgMessages.cpp
sg_DlgPreferences.cpp
Bernd 14 Jan 2011
- unix build system: generate_svn_version
- generate version string from plain git repositories, too
- define SVN_REPOSITORY (URL) and SVN_REVISION (numerical) separately
so these could be used in proprocessor directives
generate_svn_version.sh
David 14 Jan 2011
- make the Manager build on FC11
- simulator work
clientgui/
Makefile.am
sched/
edf_sim.cpp
client/
sim.cpp
sim_control.php
David 15 Jan 2011
- client: fix job scheduling bug.
Scenario: we have 2 CPUs and 1GB RAM
Project A has jobs that use 1GB.
Project B has small-mem jobs.
Currently, we ignore RAM usage in building the runnable job list,
so we might pick 2 jobs from project A.
enforce_schedule() (which checks RAM usage) will run just one of them,
and the other CPU will be idle.
Solution: keep track of RAM usage while building the runnable job list.
client/
cpu_sched.cpp
David 15 Jan 2011
- client: code cleanup in CPU scheduling;
eliminate global variable
client/
client_state.cpp,h
cpu_sched.cpp
sim.cpp
Charlie 18 Jan 2011
Mac: update release script to remove install of separate BOINC skin.
mac_installer/
release_boinc.sh
David 18 Jan 2011
- simulator work
client/
cpu_sched.cpp
work_fetch.h
sim.cpp
sim_control.cpp
client_types.cpp
David 19 Jan 2011
- client: eliminate unnecessary CPU reschedules.
Currently we do a reschedule any time a job checkpoints,
in case there's a job that has finished a time slice
but hasn't checkpointed yet.
Instead: flag such jobs, and trigger a reschedule
on checkpoint only for flagged jobs.
- client: fix instability in job scheduling that happens
if a job's estimated completion time in RR sim is close to its deadline.
It can alternate between making and missing deadline,
causing the scheduler to alternate rapidly between jobs.
Solution: if RR sim has marked a job as deadline miss
any time in the last (CPU scheduling period),
treat it as a deadline miss.
client/
app.cpp,h
rr_sim.cpp
app_control.cpp
cpu_sched.cpp
David 19 Jan 2011
- client: if we're using an acct mgr,
and we're attached to a project manually (not via acct mgr)
and the acct mgr tells us to detach from it, don't.
client/
acct_mgr.cpp
David 19 Jan 2011
- server: fix for EmBOINC
sched/
sched_util.cpp
David 24 Jan 2011
- server: disable upload certificates by default.
These increase server load and it's not clear they're needed.
py/Boinc/
setup_project.py
Rom 25 Jan 2011
- MGR: Fix advanced view button is Simple GUI.
(Button Text is Verdana 8pt. in MS Paint)
clientgui/res/skins/default/graphic/
advanced_link_image.xpm
clientgui/res/templates/skins/
advanced_link_image.gif (Added)
btnAdvancedView.png (Removed)
David 25 Jan 2011
- client: accept <options/> and <log_flags/> in cc_config.xml
- client: reset log flags (as well as options) when rereading cc_config.xml
client/
log_flags.cpp,h
David 25 Jan 2011
- web: tweaks so that BOINC-Wide Teams site can warn people if
their email address is not validated
html/
inc/
user.inc
user/
edit_email_action.php
Charlie 27 Jan 2011
Mac: update Mac_SA_Insecure.sh script to not require BOINC Client in
BOINC Data folder.
mac_build/
Mac_SA_Insecure.sh
Charlie 27 Jan 2011
- MGR: Add new Simple GUI.
clientgui/
AdvancedFrame.cpp, .h
BOINCGUIApp.cpp, .h
Events.h
sg_BoincSimpleFrame.cpp, .h (new)
sg_CustomControls.cpp, .h
sg_PanelBase.cpp, .h (new)
sg_ProjectCommandPopup.cpp, .h (new)
sg_ProjectPanel.cpp, .h (new)
sg_ProjectWebSitesPopup.cpp, .h (new)
sg_TaskCommandPopup.cpp, .h (new)
sg_TaskPanel.cpp, .h (new)
SkinManager.cpp
mac/
MacBitmapComboBox.cpp, .h (new)
res/
RedDot16.xpm (new)
YellowDot16.xpm (new)
GreenDot16.xpm (new)
mac_build/
boinc.xcodeproj/
project.pbxproj
win_build/
boincmgr.vcproj
David 27 Jan 2011
- client: fix bug in setting GPU peak flops
client/
coproc_detect.cpp
lib/
coproc.cpp,h
Charlie 28 Jan 2011
- MGR: Fix default skin selection display in Simple Preferences
dialog.
- MGR: Use standard native buttons in Simple Preferences and
Simple Notices dialogs.
- MGR: Use our control IDs instead of wxID_HELP for Help buttons
for Mac accessibility (wxID_HELP makes a bitmap button on
Macs which VoiceOver screen reader can't read.)
- MGR: Disable tooltips on Mac while new simple GUI menus are
popped up because they cover menus.
clientgui/
DlgAdvPreferences.cpp
DlgAdvPreferencesBase.cpp
sg_BoincSimpleFrame.cpp
sg_DlgMessages.cpp
sg_DlgPreferences.cpp
sg_ProjectCommandPopup.cpp
sg_ProjectWebSitesPopup.cpp
sg_TaskCommandPopup.cpp
wizardex.cpp
SkinManager.cpp
mac/
MacBitmapComboBox.cpp, .h
mac_build/
boinc.xcodeproj/
project.pbxproj
David 28 Jan 2011
- back end: allow the specification of a read-only DB replica
(in config.xml) to include DB name, user, and password.
- back end: add read-only replica info to SCHED_CONFIG,
so that C++ programs can use the replica
(currently only PHP code can use it)
- db_dump: use the read-only DB replica if it exists.
html/inc/
boinc_db.inc
db.inc
sched/
sched_config.cpp,h
db_dump.cpp
David 28 Jan 2011
- new script sched/transitioner_catchup.php: transitions all WUs
that need it, then exits.
For big projects coming up after an outage, run this before bin/start
to minimize startup overload
- tweaks to PHP libraries to allow them to be used
by scripts anywhere in the dir hierarchy
sched/
transitioner_catchup.php
html/inc/
boinc_db.inc
util_basics.inc
py/Boinc/
setup_project.py
Charlie 29 Jan 2011
- MGR: Code cleanup.
clientgui/
sg_PanelBase.cpp, .h
sg_ProjectPanel.cpp, .h
sg_TaskPanel.cpp, .h
Charlie 30 Jan 2011
- MGR: New Simple GUI optimization.
clientgui/
sg_BoincSimpleFrame.cpp
sg_PanelBase.cpp
sg_TaskPanel.cpp, .h
Charlie 30 Jan 2011
- MGR: Fix compile break on Linux.
clientgui/
sg_DlgPreferences.cpp
Charlie 31 Jan 2011
- MGR: Update Makefile.
- MGR: New Simple GUI optimization.
clientgui/
Makefile.am
sg_TaskPanel.cpp, .h
Charlie 31 Jan 2011
- Mac: Add info about dual-GPU Powerbooks to ReadMe files.
mac_installer/
GR-ReadMe.rtf
PTP-ReadMe.rtf
ReadMe.rtf
David 1 Feb 2011
- client: make "wrong URL" message not be a notice
- web: fix caching problem when PHP not installed as Apache module
html/inc/
cache.inc
client/
cs_scheduler.cpp
Charlie 1 Feb 2011
- Mac: Localize items in Mac's BOINC menu.
clientgui/
AdvancedFrame.cpp
sg_BoincSimpleFrame.cpp
mac/
MacGUI.pch
Mac_GUI.cpp
Charlie 1 Feb 2011
- MGR: Use branded short application name in Help tooltips instead
of always using "BOINC".
- Mac: Eliminate unused source files Localization.cpp, .h from Mac
project.
clientgui/
DlgEventLog.cpp
sg_BoincSimpleFrame.cpp
sg_DlgMessages.cpp
sg_DlgPreferences.cpp
sg_ProjectsComponent.cpp
mac_build/
boinc.xcodeproj/
project.pbxproj
Rom 1 Feb 2011
- WINSETUP: Avoid a 0xc0000135 error by giving the boinc_master and
boinc_project membership in the 'Users' group. Dynamic linking
to nvcuda.dll was failing because the project applications were
being denied access to DLLs in the system directory.
win_build/installerv2/redist/Windows/src/boinccas/
boinccas.rc
CACreateBOINCGroups.cpp
win_build/installerv2/redist/Windows/Win32/
boinccas.dll
boinccas95.dll
win_build/installerv2/redist/Windows/x64/
boinccas.dll
boinccas95.dll
David 1 Feb 2011
- create_work: add -d option
tools/
create_work.cpp
Rom 3 Feb 2011
- MGR: Enable the volunteer configurable 'shutdown core client' feature
on exit for Linux. It was orginally supposed to be enabled when
the balloon features were enabled, but got lost in ifdef hell.
(From "Lee")
clientgui/
DlgExitMessage.cpp
MainDocument.cpp
David 3 Feb 2011
- create_work: add some debugging printfs for Kamran
tools/
backend_lib.cpp
html/
inc/
forum.inc
profile.inc
user/
weak_auth.php
Charlie 3 Feb 2011
- MGR: Eliminate unnecessary #ifdef.
clientgui/
BOINCGUIApp.cpp
David 4 Feb 2011
- client/manager: show venue in project properties
clientgui/
DlgItemProperties.cpp
client/
client_types.cpp
lib/
gui_rpc_client.h
gui_rpc_client_ops.cpp
David 7 Feb 2011
- manager: msg tweak
client/
CompletionErrorPage.cpp
David 7 Feb 2011
- client: don't crash if omit cmdline port#. Fixes #1040
client/
cs_cmdline.cpp
Rom 8 Feb 2011
- MGR: Fix a bug that is several years old, appears to have been
introduced during the Unicode conversion phase for Windows. Passing
a wide character string into an narrow character function causes
a NULL reference exception.
TODO: There is still an issue if the manager attempts to write to
stderr when the BOINC Manager log files are redirected to a
directory the user doesn't have access to.
clientgui/
SkinManager.cpp
David 8 Feb 2011
- user web: add "delete account" feature.
This allows a user to delete all traces of themselves from a project.
Namely:
- clear fields of user record: email_addr, authenticator,
name, country, postal_code
Note: record is not deleted
- clear the domain_name and last_ip_addr fields of hosts
Note: records are not deleted
- quit team
- delete private messages sent and received
- delete forum posts, subscriptions, and forum prefs
- delete profile and associated images
- server: compile fix
html/
inc/
pm.inc
host.inc
forum.inc
user.inc
util.inc
user/
delete_account.php
stats.php
tools/
backend_lib.cpp
David 8 Feb 2011
- create_work and possibly other back-end programs:
fix bug that corrupted WU command lines.
The problem: we were using strcpy(p, p+n) to delete the
first n characters of p.
This is incorrect - the behavior of strcpy() is undefined
if its args overlap.
On some systems (e.q. AQUA's server) it does wacky things.
tools/
backend_lib.cpp
lib/
str_util.cpp,h
parse.cpp
David 9 Feb 2011
- user web: apparently if you put links of the form
http://setiathome.berkeley.edu/help.php?key=Viagra.uk
all over the web, Google will list "Viagra.uk" in your site outline (why??).
Preliminary checkin for dealing with this.
html/
inc/
prefs.inc
util.inc
user/
view_profile.php
account_finish.php
am_get_info.php
add_venue.php
David 9 Feb 2011
- user web: make all forum tables full-width
html/inc/
forum.inc
David 9 Feb 2011
- user web: finish dealing with get args spam
html/
user/
*.php
inc/
pm.inc
prefs.inc
forum.inc
util.inc
David 9 Feb 2011
- user web: appearance tweaks
html/
inc/
forum.inc
user/
forum_help_desk.php
forum_index.php
white.css
David 10 Feb 2011
- user web: fix "nowrap" post display
html/inc/
forum.inc
David 10 Feb 2011
- user web: CSS cleanup.
Use classes instead of IDs.
white.css and black.css are cleaned up; style2.css needs work
html/
inc/
pm.inc
forum.inc
user.inc
util.inc
user/
pm.php
sample_index.php
forum_thread.php
main.css
forum_help_desk.php
friend.php
forum_forum.php
forum_index.php
style2.css
white.css
David 10 Feb 2011
- client: if a logical filename contains /'s,
create the needed dirs under the slot dir
- user web: pages with translatable text should not be cached.
Fix this for home page; there are some others
client/
app_start.cpp
html/user/
sample_index.php
David 11 Feb 2011
- manager: project properties: if no venue, show "default"
clientgui/
DlgItemProperties.cpp
David 11 Feb 2011
- user web: style tweaks
html/user/
forum_post.php
main.css
white.css
David 11 Feb 2011
- user web: disable "delete account" feature
html/
user/
delete_account.php
inc/
user.inc
David 11 Feb 2011
- user web: bug fixes
html/user/
team_quit_action.php
team_manage.php
forum_moderate_post.php
David 13 Feb 2011
- user web: fix venue change
html/
inc/
prefs.inc
util.inc
user/
host_venue_action.php
David 13 Feb 2011
- user web: bug fixes
html/user/
forum_moderate_thread.php
add_venue.phhp
David 13 Feb 2011
- user web: bug fix
html/user/
forum_reply.php
David 13 Feb 2011
- user web: bug fix
html/user/
forum_banishment_vote_action.php
David 14 Feb 2011
- user web: bug fix
html/user/
pm.php
David 14 Feb 2011
- user web: fix [img] BBcode problem
html/inc/
text_transform.inc
David 14 Feb 2011
- user web: various fixes
html/
inc/
prefs.inc
user/
main.css
prefs_remove.php
forum_reply.php
white.css
add_venue.php
forum_edit.php
David 14 Feb 2011
- user web: fixes
html/user/
sample_index.php
main.css
David 14 Feb 2011
- client, linux: use X server for idle detection if available
configure.ac
client/
hostinfo_unix.cpp
Charlie 15 Feb 2011
Mac: Make backtrace compile properly with OS 10.5 and OS 10.6 SDKs.
lib/
mac/
QBacktrace.c
QCrashReport.c
Charlie 15 Feb 2011
Mac Installer: Fix the code which deletes installer receipts to use
the current package name (which changed when I eliminated the
Mac installer wrapper application around the installer package.)
This is needed to allow installing an older version to replace a
newer one under OS 10.4.x.
mac_installer/
PostInstall.cpp
uninstall.cpp
David 15 Feb 2011
- transitioner: fix bug that could cause file deletion to not be done
for some WUs
- back end: fix the way "report grace period" is implemented
old: result.report_deadline (i.e. what's in the DB) and
the deadline sent to the client are the same.
Some confusing and incorrect logic in the transitioner
tries to provide the desired semantics.
new: result.report_deadline is the deadline sent to the client,
plus the grace period.
No logic in the transitioner is needed.
db/
boinc_db.cpp,h
sched
sched_config.cpp,h
sched_send.cpp
transitioner.cpp
sched_resend.cpp
David 15 Feb 2011
- file upload handler: if client-reported offset is less than file size,
don't just print an error message;
lseek() back to the offset point.
Otherwise we can end up with duplication in the file.
sched/
file_upload_handler.cpp
David 15 Feb 2011
- update_versions: if FILE.file_ref_info contains <open_name>,
use that instead of physical name.
This lets you have logical names with slashes
py/Boinc/
tools.py
Charlie 16 Feb 2011
Mac: More thorough error checking and recovery in code which localizes
items in Mac's BOINC menu.
mac/
Mac_GUI.cpp
David 16 Feb 2011
- user web: fixes to private message functions
html/user/
pm.php
David 16 Feb 2011
- client: fix work-fetch bug.
The change in [21877] caused tasks in "download stalled" state
to be skipped in RR simulation,
and therefore to not be counted in the work buffer.
However, "download stalled" was not being evaluated correctly;
it was considering only per-file backoff, not project-wide backoff.
- client: another work-fetch bug:
don't fetch work from a project in project-wide download backoff.
client/
client_types.cpp
David 16 Feb 2011
- client: fix bug in mechanism that defers work request until
pending uploads are finished.
Due to a typo, this was not being done.
client/
cs_scheduler.cpp
David 16 Feb 2011
- client: when exclusive app mechanism is used (CPU or GPU)
wait for 30 secs after excl app exits
before restarting computation
client/
app.cpp,h
client_state.h
cs_prefs.cpp
Charlie 17 Feb 2011
Mac: Additional error checking and release created objects in code
which localizes items in Mac's BOINC menu.
mac/
Mac_GUI.cpp
Charlie 17 Feb 2011
- Mac installer: update branded build scripts to eliminate wrapper
application around install package (as was done for BOINC 6.12.7).
clientgui/
res/
MacPTPPkgIcon.zip (new)
MacGRPkgIcon.zip (new)
mac_installer/
make_GridRepublic.sh
make_ProgThruProc.sh
David 17 Feb 2011
- file upload handler: fix faulty bug fix of 2/15
- client: make REC-based scheduling and hysteresis the defaults
client/
work_fetch.cpp
sched/
file_upload_handler.cpp
David 17 Feb 2011
- client: when detach project, remove its RSS feeds from list
- client: remove once-per-week limit for client-generated notices;
need to show "network connection required" more often
- client: when remove "network conn required" notice
(because now have conn)
set the flag that says complete notice list is being sent
- client: if RSS feed fetch returns <error_num>,
show the corresponding message rather than "XML parse error"
client/
client_state.cpp
cs_notice.cpp
gui_rpc_server_ops.cpp
http_curl.cpp
net_stats.cpp,h
Rom 18 Feb 2011
- client: Fast User Switching does not change the session protocol
to RDP when the active session is put into the background and
a new one is brought into the foreground. It appears it is safe
to use the connected state in addition to the protocol
to detect when the session is no longer capable of processing
GPU work
lib/
win_util.cpp
Charlie 18 Feb 2011
- Mac: Update link to NVIDIA CUDA Mac driver download page
mac_installer/
GR-ReadMe.rtf
PTP-ReadMe.rtf
ReadMe.rtf
David 18 Feb 2011
- client: more notice-related fixes.
I'm working on this case:
- start up
- disconnect (produces notice)
- reconnect (removes notice)
The client is now doing the right thing.
The manager is not.
client/
acct_setup.h
cs_notice.cpp,h
gui_rpc_server.h
gui_rpc_server_ops.cpp
David 19 Feb 2011
- wrapper: add optional <exec_dir> element in <task> elements;
specifies a directory to run app in.
macro-substitute project dir for $PROJECT_DIR.
From Carl Christensen, more or less
samples/wrapper/
wrapper.cpp
David 19 Feb 2011
- wrapper: add optional <setenv> element in <task> elements;
specifies an environment variable assignment;
macro-substitute project dir for $PROJECT_DIR.
From Carl Christensen
samples/wrapper/
wrapper.cpp
David 19 Feb 2011
- client: make "wait 30 sec after exclusive app exits" apply to network too
- client: fix bug in "wait 30 sec after exclusive app exits" logic
- client: fix compile warning and possible bug in is_remote_desktop()
- win: remove wrappture_example from solution
(until Hubzereo guys get their win lib working)
client/
app.cpp
cs_prefs.cpp
lib/
win_util.cpp
samples/wrapper/
wrapper.cpp
win_build/
boinc.sln
David 20 Feb 2011
- wrapper: Windows fixes
samples/wrapper/
wrapper.cpp
David 20 Feb 2011
- client: fix disk-space accounting bug when user quotas in use
(Windows)
lib/
filesys.cpp
Charlie 21 Feb 2011
- client: fix compiler warning.
client/
cs_notice.cpp
David 22 Feb 2011
- client: add cpu_sched debug messages for anti-domino-effect
and anti-thrasing mechanisms
- wrapper: to kill an app, use SIGTERM instead of SIGKILL
client/
acct_mgr.cpp
cpu_sched.cpp
samples/wrapper/
wrapper.cpp
David 22 Feb 2011
- wrapper: improve and bullet-proof the way we kill apps.
Win: enumerate all descendants, and kill them all TerminateProcess().
Unix: