aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/support/time_posix.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/lib/support/time_posix.c')
-rw-r--r--src/core/lib/support/time_posix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lib/support/time_posix.c b/src/core/lib/support/time_posix.c
index 3ead40d807..ad7c5036da 100644
--- a/src/core/lib/support/time_posix.c
+++ b/src/core/lib/support/time_posix.c
@@ -30,7 +30,7 @@
#include <grpc/support/atm.h>
#include <grpc/support/log.h>
#include <grpc/support/time.h>
-#include "src/core/lib/support/block_annotate.h"
+#include "src/core/lib/iomgr/block_annotate.h"
static struct timespec timespec_from_gpr(gpr_timespec gts) {
struct timespec rv;
@@ -159,7 +159,7 @@ void gpr_sleep_until(gpr_timespec until) {
delta_ts = timespec_from_gpr(delta);
GRPC_SCHEDULING_START_BLOCKING_REGION;
ns_result = nanosleep(&delta_ts, NULL);
- GRPC_SCHEDULING_END_BLOCKING_REGION;
+ GRPC_SCHEDULING_END_BLOCKING_REGION_NO_EXEC_CTX;
if (ns_result == 0) {
break;
}