Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Rob Latham
MPICH-BlueGene
Commits
c2c93382
Commit
c2c93382
authored
Aug 03, 2010
by
David Goodell
Browse files
[svn-r6979] fix '||' --> '&&' in #if
No reviewer.
parent
da733c6d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/mpid/ch3/channels/nemesis/src/ch3_progress.c
View file @
c2c93382
...
...
@@ -376,7 +376,7 @@ int MPIDI_CH3I_Progress (MPID_Progress_state *progress_state, int is_blocking)
{
/* MT FIXME-N1 race under per-object, harmless to disable here but
* its a symptom of a bigger problem... */
#if !(defined(MPICH_IS_THREADED)
||
(MPIU_THREAD_GRANULARITY == MPIU_THREAD_GRANULARITY_PER_OBJECT))
#if !(defined(MPICH_IS_THREADED)
&&
(MPIU_THREAD_GRANULARITY == MPIU_THREAD_GRANULARITY_PER_OBJECT))
MPIU_Assert
(
MPIDI_Request_get_type
(
sreq
)
!=
MPIDI_REQUEST_TYPE_GET_RESP
);
#endif
...
...
@@ -673,7 +673,7 @@ int MPID_nem_handle_pkt(MPIDI_VC_t *vc, char *buf, MPIDI_msg_sz_t buflen)
if
(
!
reqFn
)
{
/* MT FIXME-N1 */
#if !(defined(MPICH_IS_THREADED)
||
(MPIU_THREAD_GRANULARITY == MPIU_THREAD_GRANULARITY_PER_OBJECT))
#if !(defined(MPICH_IS_THREADED)
&&
(MPIU_THREAD_GRANULARITY == MPIU_THREAD_GRANULARITY_PER_OBJECT))
MPIU_Assert
(
MPIDI_Request_get_type
(
rreq
)
!=
MPIDI_REQUEST_TYPE_GET_RESP
);
#endif
MPIDI_CH3U_Request_complete
(
rreq
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment