aboutsummaryrefslogtreecommitdiff
path: root/src/modules/systemlib
diff options
context:
space:
mode:
authorAnton Babushkin <anton.babushkin@me.com>2013-09-21 15:36:16 +0200
committerAnton Babushkin <anton.babushkin@me.com>2013-09-21 15:36:16 +0200
commit96d8ee3483012e2c48a3ca3d4bd9872b866e3bad (patch)
tree35fa82a5b59b2fe25eb3d12b9beb69e2d25ee255 /src/modules/systemlib
parentab26ecf188198adc328a9e2f8b48dbd179ac45af (diff)
parent7033aa173bf85b01f6fcfacf6e643095c3f16848 (diff)
downloadpx4-firmware-96d8ee3483012e2c48a3ca3d4bd9872b866e3bad.tar.gz
px4-firmware-96d8ee3483012e2c48a3ca3d4bd9872b866e3bad.tar.bz2
px4-firmware-96d8ee3483012e2c48a3ca3d4bd9872b866e3bad.zip
Merge branch 'master' into mpc_yaw_fix
Diffstat (limited to 'src/modules/systemlib')
-rw-r--r--src/modules/systemlib/param/param.c38
1 files changed, 32 insertions, 6 deletions
diff --git a/src/modules/systemlib/param/param.c b/src/modules/systemlib/param/param.c
index 59cbcf5fb..ccdb2ea38 100644
--- a/src/modules/systemlib/param/param.c
+++ b/src/modules/systemlib/param/param.c
@@ -509,31 +509,57 @@ int
param_save_default(void)
{
int result;
+ unsigned retries = 0;
/* delete the file in case it exists */
struct stat buffer;
if (stat(param_get_default_file(), &buffer) == 0) {
- result = unlink(param_get_default_file());
+
+ do {
+ result = unlink(param_get_default_file());
+ if (result != 0) {
+ retries++;
+ usleep(1000 * retries);
+ }
+ } while (result != OK && retries < 10);
+
if (result != OK)
warnx("unlinking file %s failed.", param_get_default_file());
}
/* create the file */
- int fd = open(param_get_default_file(), O_WRONLY | O_CREAT | O_EXCL);
+ int fd;
- if (fd < 0) {
+ do {
/* do another attempt in case the unlink call is not synced yet */
- usleep(5000);
fd = open(param_get_default_file(), O_WRONLY | O_CREAT | O_EXCL);
+ if (fd < 0) {
+ retries++;
+ usleep(1000 * retries);
+ }
+ } while (fd < 0 && retries < 10);
+
+ if (fd < 0) {
+
warn("opening '%s' for writing failed", param_get_default_file());
return fd;
}
- result = param_export(fd, false);
+ do {
+ result = param_export(fd, false);
+
+ if (result != OK) {
+ retries++;
+ usleep(1000 * retries);
+ }
+
+ } while (result != 0 && retries < 10);
+
+
close(fd);
- if (result != 0) {
+ if (result != OK) {
warn("error exporting parameters to '%s'", param_get_default_file());
(void)unlink(param_get_default_file());
return result;