diff options
author | Rickard Green <[email protected]> | 2017-08-01 18:34:58 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2017-08-28 14:43:33 +0200 |
commit | ffd59fbd9ac262b7aba4b86e7da4992a3e668e24 (patch) | |
tree | 7e26dd7d2d02264d4fe2e8860eff3d1546d18b08 /erts/emulator/beam/bif.c | |
parent | 4dcb2ae7810a507b701a30072b2f514cab7ebbdb (diff) | |
download | otp-ffd59fbd9ac262b7aba4b86e7da4992a3e668e24.tar.gz otp-ffd59fbd9ac262b7aba4b86e7da4992a3e668e24.tar.bz2 otp-ffd59fbd9ac262b7aba4b86e7da4992a3e668e24.zip |
Introduce sender in distributed signals and dflag configuration
Diffstat (limited to 'erts/emulator/beam/bif.c')
-rw-r--r-- | erts/emulator/beam/bif.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/beam/bif.c b/erts/emulator/beam/bif.c index b1f915b133..53b48ba6e1 100644 --- a/erts/emulator/beam/bif.c +++ b/erts/emulator/beam/bif.c @@ -2035,6 +2035,7 @@ static Sint remote_send(Process *p, DistEntry *dep, ASSERT(is_atom(to) || is_external_pid(to)); + ctx->dep = dep; code = erts_dsig_prepare(&ctx->dsd, dep, p, ERTS_DSP_NO_LOCK, !ctx->suspend); switch (code) { case ERTS_DSIG_PREP_NOT_ALIVE: |