Rename struct mirror_status to struct mirror

This commit is contained in:
Alex Young
2012-07-12 14:54:48 +01:00
parent c6a084ce82
commit cef2dcaad2
4 changed files with 28 additions and 28 deletions

View File

@@ -58,7 +58,7 @@ enum mirror_state {
MS_FAIL_SIZE_MISMATCH
};
struct mirror_status {
struct mirror {
pthread_t thread;
/* set to 1, then join thread to make mirror terminate early */
int signal_abandon;
@@ -82,7 +82,7 @@ struct mirror_status {
struct mirror_super {
struct mirror_status * mirror;
struct mirror * mirror;
pthread_t thread;
struct mbox * state_mbox;
};