summaryrefslogtreecommitdiff
path: root/libcult/cult/mm/arch/i386/counter.hxx
blob: 21f5f6343d4d3fc61ce20bb462bf27e563484299 (plain)
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
35
36
37
38
39
40
41
42
43
// file      : cult/mm/arch/i386/counter.hxx
// author    : Boris Kolpackov <boris@kolpackov.net>
// copyright : Copyright (c) 2005-2010 Boris Kolpackov
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#ifndef CULT_MM_ARCH_I386_COUNTER_HXX
#define CULT_MM_ARCH_I386_COUNTER_HXX

#include <cult/types/fundamental.hxx>

namespace Cult
{
  namespace MM
  {
    class Counter: public NonCopyable
    {
    public:
      Counter ();

      // After failure assume the counter has its old value.
      //
      Void
      inc_ref ();


      // After failure assume the counter has its new value.
      //
      Boolean
      dec_ref ();


      Size
      count () const;

    private:
      Size value_;
    };
  }
}

#include <cult/mm/arch/i386/counter.ixx>

#endif  // CULT_MM_ARCH_I386_COUNTER_HXX