1
1

counters need to be signed as we check for <0

This commit was SVN r7155.
Этот коммит содержится в:
Tim Woodall 2005-09-02 18:26:07 +00:00
родитель dfe52fceef
Коммит b65dc08ab1

Просмотреть файл

@ -125,12 +125,12 @@ struct mca_btl_base_endpoint_t {
/**< list of pending high priority frags */
opal_list_t pending_frags_lp;
/**< list of pending low prioirty frags */
/**< list of pending low priority frags */
uint32_t wr_sq_tokens_hp;
int32_t wr_sq_tokens_hp;
/**< number of high priority frags that can be outstanding (down counter) */
uint32_t wr_sq_tokens_lp;
int32_t wr_sq_tokens_lp;
/**< number of low priority frags that can be outstanding (down counter) */
mca_btl_mvapi_rem_info_t rem_info;