forked from ops-baidu/shadow-mfs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4e62b9b
commit 35b6e69
Showing
398 changed files
with
267,326 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
12 |
3 changes: 3 additions & 0 deletions
3
.svn/pristine/01/018ea7023d1c46732cf054f2351898d800d022eb.svn-base
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env bash | ||
echo "mfssnapshot is deprecated, use mfsappendchunks instead or consider using mfsmakesnapshot" | ||
mfsappendchunks "$@" |
29 changes: 29 additions & 0 deletions
29
.svn/pristine/02/0248ce917488ac3be905b2bcf8f06c05de3ea37b.svn-base
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
Copyright 2005-2010 Jakub Kruszona-Zawadzki, Gemius SA. | ||
|
||
This file is part of MooseFS. | ||
|
||
MooseFS is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, version 3. | ||
|
||
MooseFS is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
|
||
You should have received a copy of the GNU General Public License | ||
along with MooseFS. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#ifndef _CHANGELOG_H_ | ||
#define _CHANGELOG_H_ | ||
|
||
#include <stdio.h> | ||
#include <inttypes.h> | ||
|
||
void changelog_rotate(void); | ||
void changelog(uint64_t version,const char *format,...); | ||
int changelog_init(); | ||
|
||
#endif |
Oops, something went wrong.