2001-01-27 10:24:05 +01:00
|
|
|
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Library General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
|
|
License along with this library; if not, write to the Free
|
|
|
|
Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
|
|
|
|
MA 02111-1307, USA */
|
|
|
|
|
|
|
|
#ifndef _my_bitmap_h_
|
|
|
|
#define _my_bitmap_h_
|
|
|
|
|
2001-02-07 16:42:20 +01:00
|
|
|
#include <my_pthread.h>
|
|
|
|
|
|
|
|
#define MY_BIT_NONE (~(uint) 0)
|
|
|
|
|
|
|
|
typedef struct st_bitmap
|
|
|
|
{
|
|
|
|
uchar *bitmap;
|
|
|
|
uint bitmap_size;
|
2001-12-13 02:55:33 +01:00
|
|
|
my_bool thread_safe; /* set if several threads access the bitmap */
|
|
|
|
/* mutex will be acquired for the duration of each bitmap operation if
|
|
|
|
thread_safe flag is set. Otherwise, we optimize by not acquiring the
|
|
|
|
mutex
|
|
|
|
*/
|
2001-02-07 16:42:20 +01:00
|
|
|
#ifdef THREAD
|
|
|
|
pthread_mutex_t mutex;
|
|
|
|
#endif
|
2001-02-07 22:27:19 +01:00
|
|
|
} MY_BITMAP;
|
2001-01-27 10:24:05 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2001-12-13 02:55:33 +01:00
|
|
|
extern my_bool bitmap_init(MY_BITMAP *bitmap, uint bitmap_size,
|
|
|
|
my_bool thread_safe);
|
2001-02-07 22:27:19 +01:00
|
|
|
extern void bitmap_free(MY_BITMAP *bitmap);
|
|
|
|
extern void bitmap_set_bit(MY_BITMAP *bitmap, uint bitmap_bit);
|
|
|
|
extern uint bitmap_set_next(MY_BITMAP *bitmap);
|
2001-12-13 02:55:33 +01:00
|
|
|
extern void bitmap_set_all(MY_BITMAP* bitmap);
|
|
|
|
extern my_bool bitmap_is_set(MY_BITMAP* bitmap, uint bitmap_bit);
|
|
|
|
extern void bitmap_clear_all(MY_BITMAP* bitmap);
|
2001-02-07 22:27:19 +01:00
|
|
|
extern void bitmap_clear_bit(MY_BITMAP *bitmap, uint bitmap_bit);
|
2001-01-27 10:24:05 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-02-07 16:42:20 +01:00
|
|
|
#endif /* _my_bitmap_h_ */
|