Changeset 3068 for trunk


Ignore:
Timestamp:
11/25/15 12:56:33 (8 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: No

Ready for Test: Yes

Interface Changes: Yes/No?

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...


Make concurrent module warning free.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/concurrent.cpp

    r2446 r3068  
    9696{
    9797        int result = pthread_mutex_destroy(&mutex);
     98  if (result != 0) {
     99    LOG(result);
     100  }
    98101        result = pthread_cond_destroy(&cond);
     102  if (result != 0) {
     103    LOG(result);
     104  }
    99105}
    100106
Note: See TracChangeset for help on using the changeset viewer.