Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libcdi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mpim-sw
libcdi
Commits
e91bbdf3
Commit
e91bbdf3
authored
9 years ago
by
Thomas Jahns
Browse files
Options
Downloads
Patches
Plain Diff
Align interface of fwMPINONB with that of cdiPioFileWrite.
parent
10f004a0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/pio.c
+1
-1
1 addition, 1 deletion
src/pio.c
src/pio_impl.h
+1
-1
1 addition, 1 deletion
src/pio_impl.h
src/pio_mpinonb.c
+1
-1
1 addition, 1 deletion
src/pio_mpinonb.c
with
3 additions
and
3 deletions
src/pio.c
+
1
−
1
View file @
e91bbdf3
...
...
@@ -41,7 +41,7 @@ cdiPioFileWrite(int fileID, const void *restrict buffer, size_t len, int tsID)
switch
(
commInqIOMode
())
{
case
PIO_MPI
:
iret
=
fwMPINONB
(
fileID
,
tsID
,
buffer
,
len
);
iret
=
fwMPINONB
(
fileID
,
buffer
,
len
,
tsID
);
break
;
#ifndef _SX
case
PIO_ASYNCH
:
...
...
This diff is collapsed.
Click to expand it.
src/pio_impl.h
+
1
−
1
View file @
e91bbdf3
...
...
@@ -91,7 +91,7 @@ typedef void (*elemOp)(void *elem, void *data);
void
listSetForeach
(
listSet
*
q
,
elemOp
func
,
void
*
data
);
/* pio_mpinonb.c */
size_t
fwMPINONB
(
int
,
int
,
const
void
*
,
size_t
);
size_t
fwMPINONB
(
int
,
const
void
*
,
size_t
,
int
);
void
initMPINONB
(
void
);
void
finalizeMPINONB
(
void
);
...
...
This diff is collapsed.
Click to expand it.
src/pio_mpinonb.c
+
1
−
1
View file @
e91bbdf3
...
...
@@ -173,7 +173,7 @@ writeMPINONB(aFiledataM *of)
/***************************************************************/
size_t
fwMPINONB
(
int
fileID
,
int
tsID
,
const
void
*
buffer
,
size_t
len
)
size_t
fwMPINONB
(
int
fileID
,
const
void
*
buffer
,
size_t
len
,
int
tsID
)
{
int
error
=
0
;
int
filled
=
0
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment