about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-01-26 13:20:10 -0800
committerEric Wong <normalperson@yhbt.net>2010-01-26 13:27:33 -0800
commited96fd8ecc9af2b36f527f017473669d47511e47 (patch)
tree20200f27c8aea7ef6d206c94b98f178b9dbe95cc
parentd4581cb9a1d178cb31416eb30d501a0e46878e45 (diff)
downloadpcu-ed96fd8ecc9af2b36f527f017473669d47511e47.tar.gz
rename pcu-sync -> pcu-fsync
Avoid confusing people with a 'sync' command since this is about
fsync-ing individual files.
-rw-r--r--.gitignore2
-rw-r--r--Makefile4
-rw-r--r--fsync.c (renamed from sync.c)0
3 files changed, 3 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index e4a8a6f..3040a5d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,6 @@
 pcu-mincore
 pcu-fadvise
-pcu-sync
+pcu-fsync
 GIT-VERSION-FILE
 *.1
 *.html
diff --git a/Makefile b/Makefile
index 5d8a09e..0027fdd 100644
--- a/Makefile
+++ b/Makefile
@@ -22,9 +22,9 @@ LDFLAGS = -Wl,-O1
 
 pcu-mincore: mincore.c compat-util.h
 pcu-fadvise: fadvise.c compat-util.h
-pcu-sync: sync.c compat-util.h
+pcu-fsync: fsync.c compat-util.h
 
-PCU_BIN := pcu-fadvise pcu-mincore pcu-sync
+PCU_BIN := pcu-fadvise pcu-mincore pcu-fsync
 
 $(PCU_BIN):
         $(CC) $(CFLAGS) $(LDFLAGS) -o $@+ $<
diff --git a/sync.c b/fsync.c
index 994ca72..994ca72 100644
--- a/sync.c
+++ b/fsync.c