Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion include/splinterdb/platform_linux/public_platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ typedef int32_t int32;
typedef uint32_t uint32;
typedef int64_t int64;
typedef uint64_t uint64;
typedef uint64 timestamp;
typedef uint64 threadid;

typedef int32 bool32;
Expand Down
1 change: 1 addition & 0 deletions src/platform_linux/platform_io.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include "platform_string.h"
#include "platform_util.h"
#include "platform_heap.h"
#include "platform_time.h"
#include <fcntl.h>

typedef struct io_handle io_handle;
Expand Down
2 changes: 2 additions & 0 deletions src/platform_linux/platform_time.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

#pragma once

typedef uint64 timestamp;

static inline timestamp
platform_get_timestamp(void)
{
Expand Down
1 change: 1 addition & 0 deletions src/task.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include "platform_heap.h"
#include "platform_threads.h"
#include "platform_condvar.h"
#include "platform_time.h"

/*
* We maintain separate task groups for the memtable because memtable
Expand Down
Loading