summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/chainnodecount.c
blob: 9f0bb38a28c81a3a2b3e184213f8cb7c3b322e81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 * Copyright (c) 2012 embedded brains GmbH.  All rights reserved.
 *
 *  embedded brains GmbH
 *  Obere Lagerstr. 30
 *  82178 Puchheim
 *  Germany
 *  <rtems@embedded-brains.de>
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems/score/chainimpl.h>

size_t _Chain_Node_count_unprotected( const Chain_Control *chain )
{
  size_t            count = 0;
  const Chain_Node *tail  = _Chain_Immutable_tail( chain );
  const Chain_Node *node  = _Chain_Immutable_first( chain );

  while ( node != tail ) {
    ++count;

    node = _Chain_Immutable_next( node );
  }

  return count;
}