Skip to content

Commit 6ff2780

Browse files
author
Ralph Castain
authored
Merge pull request #3614 from rhc54/topic/sync
Don't sweat the "sync" settings on file descriptors as those flags aren't apparently fully portable
2 parents de92d1b + 26e7515 commit 6ff2780

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

orte/mca/state/base/state_base_fns.c

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1148,15 +1148,6 @@ void orte_state_base_check_fds(orte_job_t *jdata)
11481148
} else {
11491149
opal_argv_append_nosize(&list, "rdwr");
11501150
}
1151-
if (flflags & O_DSYNC) {
1152-
opal_argv_append_nosize(&list, "dsync");
1153-
}
1154-
if (flflags & O_RSYNC) {
1155-
opal_argv_append_nosize(&list, "rsync");
1156-
}
1157-
if (flflags & O_SYNC) {
1158-
opal_argv_append_nosize(&list, "sync");
1159-
}
11601151
if (flk && F_UNLCK != fl.l_type) {
11611152
if (F_WRLCK == fl.l_type) {
11621153
opal_argv_append_nosize(&list, "wrlock");

0 commit comments

Comments
 (0)