summaryrefslogtreecommitdiff
path: root/rts
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2014-11-18 15:44:14 +0000
committerSimon Marlow <marlowsd@gmail.com>2016-04-26 16:00:43 +0100
commite68195a96529cf1cc2d9cc6a9bc05183fce5ecea (patch)
treed79dbffbcb44cbdd7e10706535a66e4d9669378d /rts
parentc9bcaf3165586ac214fa694e61c55eb45eb131ab (diff)
downloadhaskell-e68195a96529cf1cc2d9cc6a9bc05183fce5ecea.tar.gz
RTS: Add setInCallCapability()
This allows an OS thread to specify which capability it should run on when it makes a call into Haskell. It is intended for a fairly specialised use case, when the client wants to have tighter control over the mapping between OS threads and Capabilities - perhaps 1:1 correspondence, for example.
Diffstat (limited to 'rts')
-rw-r--r--rts/Capability.c33
-rw-r--r--rts/Task.c9
-rw-r--r--rts/Task.h3
3 files changed, 31 insertions, 14 deletions
diff --git a/rts/Capability.c b/rts/Capability.c
index a2078e5a84..355f36d0c5 100644
--- a/rts/Capability.c
+++ b/rts/Capability.c
@@ -709,21 +709,26 @@ void waitForCapability (Capability **pCap, Task *task)
Capability *cap = *pCap;
if (cap == NULL) {
- // Try last_free_capability first
- cap = last_free_capability;
- if (cap->running_task) {
- nat i;
- // otherwise, search for a free capability
- cap = NULL;
- for (i = 0; i < n_capabilities; i++) {
- if (!capabilities[i]->running_task) {
- cap = capabilities[i];
- break;
+ if (task->preferred_capability != -1) {
+ cap = capabilities[task->preferred_capability %
+ enabled_capabilities];
+ } else {
+ // Try last_free_capability first
+ cap = last_free_capability;
+ if (cap->running_task) {
+ nat i;
+ // otherwise, search for a free capability
+ cap = NULL;
+ for (i = 0; i < n_capabilities; i++) {
+ if (!capabilities[i]->running_task) {
+ cap = capabilities[i];
+ break;
+ }
+ }
+ if (cap == NULL) {
+ // Can't find a free one, use last_free_capability.
+ cap = last_free_capability;
}
- }
- if (cap == NULL) {
- // Can't find a free one, use last_free_capability.
- cap = last_free_capability;
}
}
diff --git a/rts/Task.c b/rts/Task.c
index 82f7780654..c30bcf17d5 100644
--- a/rts/Task.c
+++ b/rts/Task.c
@@ -213,6 +213,7 @@ newTask (rtsBool worker)
task->n_spare_incalls = 0;
task->spare_incalls = NULL;
task->incall = NULL;
+ task->preferred_capability = -1;
#if defined(THREADED_RTS)
initCondition(&task->cond);
@@ -488,6 +489,14 @@ interruptWorkerTask (Task *task)
#endif /* THREADED_RTS */
+void
+setInCallCapability (int preferred_capability)
+{
+ Task *task = allocTask();
+ task->preferred_capability = preferred_capability;
+}
+
+
#ifdef DEBUG
void printAllTasks(void);
diff --git a/rts/Task.h b/rts/Task.h
index 37832a39d3..bcf456d270 100644
--- a/rts/Task.h
+++ b/rts/Task.h
@@ -151,6 +151,9 @@ typedef struct Task_ {
// So that we can detect when a finalizer illegally calls back into Haskell
rtsBool running_finalizers;
+ // if >= 0, this Capability will be used for in-calls
+ int preferred_capability;
+
// Links tasks on the returning_tasks queue of a Capability, and
// on spare_workers.
struct Task_ *next;