~ubuntu-branches/ubuntu/lucid/boinc/lucid

« back to all changes in this revision

Viewing changes to client/scheduler_op.C

  • Committer: Bazaar Package Importer
  • Author(s): Frank S. Thomas, Frank S. Thomas, Thibaut VARENE
  • Date: 2007-12-05 03:02:28 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20071205030228-bii2lo47p2dqrkg7
Tags: 5.10.30-1
[ Frank S. Thomas ]
* New upstream release.
* debian/boinc-client.default: Removed --return_results_immediately from the
  example BOINC_OPTS variable, because this command line option is not
  implemented and won't be available in BOINC >= 6.1, see upstream r14280.
* debian/control:
  - Bumped Standards-Version from 3.7.2 to 3.7.3, no changes required.
  - Changed my maintainer address to fst@debian.org.

[ Thibaut VARENE ]
* debian/boinc-client.{init,default}: Added option to enable advanced
  scheduling of the client and its sub-processes by default.
  (closes: #449015)

Show diffs side-by-side

added added

removed removed

Lines of Context:
306
306
        while (q) {
307
307
            n = sscanf(q, "<link rel=\"boinc_scheduler\" href=\"%s", buf2);
308
308
            if (n == 1) {
309
 
                char* q2 = strchr(buf2, '\"');
 
309
                char* q2 = strchr(buf2, '"');
310
310
                if (q2) *q2 = 0;
311
311
                strip_whitespace(buf2);
312
312
                str = string(buf2);
812
812
    priority = p;
813
813
}
814
814
 
815
 
const char *BOINC_RCSID_11c806525b = "$Id: scheduler_op.C 13890 2007-10-17 23:44:52Z romw $";
 
815
const char *BOINC_RCSID_11c806525b = "$Id: scheduler_op.C 14179 2007-11-13 17:29:07Z romw $";