summaryrefslogtreecommitdiff
path: root/mysys
diff options
context:
space:
mode:
authorguilhem@gbichot4.local <>2008-02-18 23:36:57 +0100
committerguilhem@gbichot4.local <>2008-02-18 23:36:57 +0100
commit045f3c4a5d92dc0acd43db6c5248a69cb421cfcb (patch)
treeeb84c87b6b3703ffc18f62934e35f2c3a7986c4a /mysys
parenta6d50c102c36f0ffbfb7182673f4c04995412e02 (diff)
parent9e2b31b0268a05a94032ba96c0830536ce983685 (diff)
downloadmariadb-git-045f3c4a5d92dc0acd43db6c5248a69cb421cfcb.tar.gz
Merge gbichot@bk-internal.mysql.com:/home/bk/mysql-5.1-build
into gbichot4.local:/home/mysql_src/mysql-5.1-build-gca
Diffstat (limited to 'mysys')
-rw-r--r--mysys/charset.c12
-rw-r--r--mysys/my_getopt.c8
-rw-r--r--mysys/queues.c2
-rw-r--r--mysys/thr_lock.c6
4 files changed, 14 insertions, 14 deletions
diff --git a/mysys/charset.c b/mysys/charset.c
index 692d7867fe0..9bd8de4316a 100644
--- a/mysys/charset.c
+++ b/mysys/charset.c
@@ -606,9 +606,9 @@ CHARSET_INFO *get_charset_by_csname(const char *cs_name,
is no character set with given name.
*/
-bool resolve_charset(const char *cs_name,
- CHARSET_INFO *default_cs,
- CHARSET_INFO **cs)
+my_bool resolve_charset(const char *cs_name,
+ CHARSET_INFO *default_cs,
+ CHARSET_INFO **cs)
{
*cs= get_charset_by_csname(cs_name, MY_CS_PRIMARY, MYF(0));
@@ -638,9 +638,9 @@ bool resolve_charset(const char *cs_name,
collation with given name.
*/
-bool resolve_collation(const char *cl_name,
- CHARSET_INFO *default_cl,
- CHARSET_INFO **cl)
+my_bool resolve_collation(const char *cl_name,
+ CHARSET_INFO *default_cl,
+ CHARSET_INFO **cl)
{
*cl= get_charset_by_name(cl_name, MYF(0));
diff --git a/mysys/my_getopt.c b/mysys/my_getopt.c
index 5132ac820b8..6a7ee748930 100644
--- a/mysys/my_getopt.c
+++ b/mysys/my_getopt.c
@@ -795,10 +795,10 @@ static longlong getopt_ll(char *arg, const struct my_option *optp, int *err)
*/
longlong getopt_ll_limit_value(longlong num, const struct my_option *optp,
- bool *fix)
+ my_bool *fix)
{
longlong old= num;
- bool adjusted= FALSE;
+ my_bool adjusted= FALSE;
char buf1[255], buf2[255];
ulonglong block_size= (optp->block_size ? (ulonglong) optp->block_size : 1L);
@@ -864,9 +864,9 @@ static ulonglong getopt_ull(char *arg, const struct my_option *optp, int *err)
ulonglong getopt_ull_limit_value(ulonglong num, const struct my_option *optp,
- bool *fix)
+ my_bool *fix)
{
- bool adjusted= FALSE;
+ my_bool adjusted= FALSE;
ulonglong old= num;
char buf1[255], buf2[255];
diff --git a/mysys/queues.c b/mysys/queues.c
index 94f49ab8f9c..9c85e493141 100644
--- a/mysys/queues.c
+++ b/mysys/queues.c
@@ -276,7 +276,7 @@ void _downheap(register QUEUE *queue, uint idx)
{
uchar *element;
uint elements,half_queue,offset_to_key, next_index;
- bool first= TRUE;
+ my_bool first= TRUE;
uint start_idx= idx;
offset_to_key=queue->offset_to_key;
diff --git a/mysys/thr_lock.c b/mysys/thr_lock.c
index afe8f289089..55b95407db5 100644
--- a/mysys/thr_lock.c
+++ b/mysys/thr_lock.c
@@ -121,7 +121,7 @@ thr_lock_owner_equal(THR_LOCK_OWNER *rhs, THR_LOCK_OWNER *lhs)
static uint found_errors=0;
static int check_lock(struct st_lock_list *list, const char* lock_type,
- const char *where, my_bool same_owner, bool no_cond)
+ const char *where, my_bool same_owner, my_bool no_cond)
{
THR_LOCK_DATA *data,**prev;
uint count=0;
@@ -709,7 +709,7 @@ end:
static inline void free_all_read_locks(THR_LOCK *lock,
- bool using_concurrent_insert)
+ my_bool using_concurrent_insert)
{
THR_LOCK_DATA *data=lock->read_wait.data;
@@ -1063,7 +1063,7 @@ void thr_multi_unlock(THR_LOCK_DATA **data,uint count)
TL_WRITE_ONLY to abort any new accesses to the lock
*/
-void thr_abort_locks(THR_LOCK *lock, bool upgrade_lock)
+void thr_abort_locks(THR_LOCK *lock, my_bool upgrade_lock)
{
THR_LOCK_DATA *data;
DBUG_ENTER("thr_abort_locks");