Changeset cf26ba9 in mainline for generic/src/synch


Ignore:
Timestamp:
2006-05-01T12:24:32Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
953b0f33
Parents:
ea199e5
Message:

Improve Doxygen-comments.

Location:
generic/src/synch
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • generic/src/synch/condvar.c

    rea199e5 rcf26ba9  
    2525 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27 */
     28
     29/**
     30 * @file        condvar.c
     31 * @brief       Condition variables.
    2732 */
    2833
  • generic/src/synch/futex.c

    rea199e5 rcf26ba9  
    2828
    2929/**
    30  * Kernel backend for futexes.
    31  * Deallocation of orphaned kernel-side futex structures is not currently implemented.
     30 * @file        futex.c
     31 * @brief       Kernel backend for futexes.
     32 *
     33 * @todo Deallocation of orphaned kernel-side futex structures is not currently implemented.
    3234 */
    3335
  • generic/src/synch/mutex.c

    rea199e5 rcf26ba9  
    2727 */
    2828
     29/**
     30 * @file        mutex.c
     31 * @brief       Mutexes.
     32 */
     33 
    2934#include <synch/mutex.h>
    3035#include <synch/semaphore.h>
  • generic/src/synch/semaphore.c

    rea199e5 rcf26ba9  
    2525 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27 */
     28
     29/**
     30 * @file        semaphore.c
     31 * @brief       Semaphores.
    2732 */
    2833
  • generic/src/synch/spinlock.c

    rea199e5 rcf26ba9  
    2727 */
    2828
     29/**
     30 * @file        spinlock.c
     31 * @brief       Spinlocks.
     32 */
     33 
    2934#include <synch/spinlock.h>
    3035#include <atomic.h>
Note: See TracChangeset for help on using the changeset viewer.