Changeset 1809 for trunk/src/kmk/main.c
- Timestamp:
- Oct 10, 2008, 4:27:38 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/main.c
r1744 r1809 55 55 # define INCL_BASE 56 56 # include <os2.h> 57 # endif 57 # endif 58 58 #endif /* KMK*/ 59 59 … … 375 375 N_("\ 376 376 -j [N], --jobs[=N] Allow N jobs at once; infinite jobs with no arg.\n"), 377 #endif 377 #endif 378 378 N_("\ 379 379 -k, --keep-going Keep going when some targets can't be made.\n"), … … 1123 1123 /* Determins the number of CPUs that are currently online. 1124 1124 This is used to setup the default number of job slots. */ 1125 static int 1125 static int 1126 1126 get_online_cpu_count(void) 1127 1127 { … … 1151 1151 return cpus ? cpus : 1; 1152 1152 1153 # else 1153 # else 1154 1154 /* UNIX like systems, try sysconf and sysctl. */ 1155 1155 int cpus = -1; … … 1157 1157 int mib[2]; 1158 1158 size_t sz; 1159 # endif 1159 # endif 1160 1160 1161 1161 # ifdef _SC_NPROCESSORS_ONLN
Note:
See TracChangeset
for help on using the changeset viewer.