aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/exec_ctx.h
diff options
context:
space:
mode:
authorGravatar Sree Kuchibhotla <sreek@google.com>2018-04-11 15:30:25 -0700
committerGravatar Sree Kuchibhotla <sreek@google.com>2018-04-11 15:31:43 -0700
commita8c452df89987be795b1f2bf3425a4824bb16bab (patch)
treefe95c2bbe54fce9472a9874bf53d9159f263f761 /src/core/lib/iomgr/exec_ctx.h
parent7b011b296e252403cd47dc36a20cb4b8cdcaba5b (diff)
Remove references to gpr_atm64
Diffstat (limited to 'src/core/lib/iomgr/exec_ctx.h')
-rw-r--r--src/core/lib/iomgr/exec_ctx.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/core/lib/iomgr/exec_ctx.h b/src/core/lib/iomgr/exec_ctx.h
index 47d257d705..4cc5586aa4 100644
--- a/src/core/lib/iomgr/exec_ctx.h
+++ b/src/core/lib/iomgr/exec_ctx.h
@@ -22,17 +22,16 @@
#include <grpc/support/port_platform.h>
#include <grpc/support/atm.h>
-#include <grpc/support/atm64.h>
#include <grpc/support/cpu.h>
#include <grpc/support/log.h>
#include "src/core/lib/gpr/tls.h"
#include "src/core/lib/iomgr/closure.h"
-typedef gpr_atm64 grpc_millis;
+typedef int64_t grpc_millis;
-#define GRPC_MILLIS_INF_FUTURE GPR_ATM64_MAX
-#define GRPC_MILLIS_INF_PAST GPR_ATM64_MIN
+#define GRPC_MILLIS_INF_FUTURE INT64_MAX
+#define GRPC_MILLIS_INF_PAST INT64_MIN
/** A workqueue represents a list of work to be executed asynchronously.
Forward declared here to avoid a circular dependency with workqueue.h. */