16 | | int app_version; // app version number |
17 | | char app_name[256]; // name of this app |
18 | | char symstore[256]; // URL of symbol store (Windows) |
19 | | char acct_mgr_url[256]; // URL of account manager, if any |
20 | | char* project_preferences; // project preferences (XML) |
21 | | int hostid; // ID of this host in project DB |
| 16 | int app_version; |
| 17 | char app_name[256]; |
| 18 | char symstore[256]; // symstore URL (Windows) |
| 19 | char acct_mgr_url[256]; |
| 20 | // if client is using account manager, its URL |
| 21 | char* project_preferences; |
| 22 | // project prefs XML |
| 23 | int userid; |
| 24 | // project's DB ID for this user/team/host |
| 25 | int teamid; |
| 26 | int hostid; |
24 | | char project_dir[256]; // absolute path of this project's directory |
25 | | char boinc_dir[256]; // absolute path of BOINC data directory |
26 | | char wu_name[256]; // name of this workunit |
27 | | char authenticator[256]; // user's authenticator |
28 | | int slot; // slot # in which we're running |
| 29 | char project_dir[256]; // where project files are stored on host |
| 30 | char boinc_dir[256]; // BOINC data directory |
| 31 | char wu_name[256]; // workunit name |
| 32 | char result_name[256]; |
| 33 | char authenticator[256]; // user's authenticator |
| 34 | int slot; // the slot this job is running in (0, 1, ...) |
| 35 | int client_pid; // process ID of BOINC client |
| 59 | |
| 60 | // info for GPU apps |
| 61 | // |
| 62 | char gpu_type[64]; |
| 63 | int gpu_device_num; |
| 64 | int gpu_opencl_dev_index; |
| 65 | double gpu_usage; // APP_VERSION.gpu_usage.usage |
| 66 | |
| 67 | // info for multicore apps: how many cores to use |
| 68 | // |
| 69 | double ncpus; |
| 70 | |
| 71 | // client configuration info |
| 72 | // |
| 73 | bool vbox_window; // whether to open a console window for VM apps |
| 74 | |
| 75 | // Items used by the BOINC runtime system |
| 76 | // |
| 77 | double checkpoint_period; // recommended checkpoint period |
| 78 | SHMEM_SEG_NAME shmem_seg_name; |
| 79 | double wu_cpu_time; // cpu time from previous episodes |