Changes between Version 36 and Version 37 of AppMultiThread
- Timestamp:
- Jun 15, 2019, 6:53:56 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AppMultiThread
v36 v37 1 1 = Multicore apps = 2 3 The average number of cores per PC will increase over the next few years,4 possibly at a faster rate than the average amount of available RAM.5 2 6 3 Depending on your application and project, … … 39 36 #endif 40 37 }}} 41 getThreadPriority() is called before forking (by OpenMP in AQUA's case),38 getThreadPriority() is called before forking, 42 39 and setThreadPriority() is then called by each worker thread. 43 40 44 41 == Specifying a plan class == 45 42 46 Multicore apps must the [AppPlan plan class] mechanism to specify their properties.43 Multicore apps must use the [AppPlan plan class] mechanism to specify their properties. 47 44 You may be able to use the [AppPlan predefined "mt" class]. 48 45 Otherwise you must specify your own,