~wb-munzinger/+junk/ocfs2-tools

« back to all changes in this revision

Viewing changes to libocfs2/include/bitops.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2009-07-06 07:26:30 UTC
  • mfrom: (1.1.7 upstream) (0.1.5 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090706072630-59335sl51k3rvu74
Tags: 1.4.2-1
* New upstream release (Closes: #535471).
* Drop patch for limits.h, included upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- mode: c; c-basic-offset: 8; -*-
2
 
 * vim: noexpandtab sw=8 ts=8 sts=0:
3
 
 *
4
 
 * bitops.h
5
 
 *
6
 
 * Bitmap frobbing routines for the OCFS2 userspace library.
7
 
 *
8
 
 * Copyright (C) 2004 Oracle.  All rights reserved.
9
 
 *
10
 
 * This program is free software; you can redistribute it and/or
11
 
 * modify it under the terms of the GNU General Public
12
 
 * License, version 2,  as published by the Free Software Foundation.
13
 
 * 
14
 
 * This program is distributed in the hope that it will be useful,
15
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17
 
 * General Public License for more details.
18
 
 * 
19
 
 * You should have received a copy of the GNU General Public
20
 
 * License along with this program; if not, write to the
21
 
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22
 
 * Boston, MA 021110-1307, USA.
23
 
 *
24
 
 * Authors: Joel Becker
25
 
 *
26
 
 *  This code is a port of e2fsprogs/lib/ext2fs/bitops.h
27
 
 *  Copyright (C) 1993, 1994, 1995, 1996 Theodore Ts'o.
28
 
 */
29
 
 
30
 
#ifndef _BITOPS_H
31
 
#define _BITOPS_H
32
 
 
33
 
extern int ocfs2_set_bit(int nr,void * addr);
34
 
extern int ocfs2_clear_bit(int nr, void * addr);
35
 
extern int ocfs2_test_bit(int nr, const void * addr);
36
 
 
37
 
extern int ocfs2_find_first_bit_set(void *addr, int size);
38
 
extern int ocfs2_find_first_bit_clear(void *addr, int size);
39
 
extern int ocfs2_find_next_bit_set(void *addr, int size, int offset);
40
 
extern int ocfs2_find_next_bit_clear(void *addr, int size, int offset);
41
 
 
42
 
#endif