2 * Copyright (c) 2005, Junio C Hamano
7 static struct cache_file
*cache_file_list
;
9 static void remove_lock_file(void)
11 while (cache_file_list
) {
12 if (cache_file_list
->lockfile
[0])
13 unlink(cache_file_list
->lockfile
);
14 cache_file_list
= cache_file_list
->next
;
18 static void remove_lock_file_on_signal(int signo
)
23 int hold_index_file_for_update(struct cache_file
*cf
, const char *path
)
25 sprintf(cf
->lockfile
, "%s.lock", path
);
26 cf
->next
= cache_file_list
;
29 signal(SIGINT
, remove_lock_file_on_signal
);
30 atexit(remove_lock_file
);
32 return open(cf
->lockfile
, O_RDWR
| O_CREAT
| O_EXCL
, 0600);
35 int commit_index_file(struct cache_file
*cf
)
37 char indexfile
[PATH_MAX
];
39 strcpy(indexfile
, cf
->lockfile
);
40 i
= strlen(indexfile
) - 5; /* .lock */
42 i
= rename(cf
->lockfile
, indexfile
);
47 void rollback_index_file(struct cache_file
*cf
)