summaryrefslogtreecommitdiff
path: root/include/my_global.h
diff options
context:
space:
mode:
authorDavi Arnaut <Davi.Arnaut@Sun.COM>2010-07-14 11:12:26 -0300
committerDavi Arnaut <Davi.Arnaut@Sun.COM>2010-07-14 11:12:26 -0300
commit7f1eedec2d70c3afe3b9b1c788d357322189a237 (patch)
treec1cb5b7c9fbb5fd6901154d278efe7223b5cac53 /include/my_global.h
parent4972f4d8030b5fc053b3c5605505215a653a39e1 (diff)
parentf317d3a6fb413cfc04c1ed005df8e859664e41d5 (diff)
downloadmariadb-git-7f1eedec2d70c3afe3b9b1c788d357322189a237.tar.gz
Merge of mysql-5.1-bugteam into mysql-trunk-merge.
Diffstat (limited to 'include/my_global.h')
-rw-r--r--include/my_global.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/my_global.h b/include/my_global.h
index d7bedd100a0..82a20053bfc 100644
--- a/include/my_global.h
+++ b/include/my_global.h
@@ -1083,20 +1083,6 @@ typedef long long my_ptrdiff_t;
#define ADD_TO_PTR(ptr,size,type) (type) ((uchar*) (ptr)+size)
#define PTR_BYTE_DIFF(A,B) (my_ptrdiff_t) ((uchar*) (A) - (uchar*) (B))
-#define MY_DIV_UP(A, B) (((A) + (B) - 1) / (B))
-#define MY_ALIGNED_BYTE_ARRAY(N, S, T) T N[MY_DIV_UP(S, sizeof(T))]
-
-#ifdef __cplusplus
-template <size_t sz> struct Aligned_char_array
-{
- union {
- void *v; // Ensures alignment.
- char arr[sz]; // The actual buffer.
- } u;
- void* arr() { return &u.arr[0]; }
-};
-#endif /* __cplusplus */
-
/*
Custom version of standard offsetof() macro which can be used to get
offsets of members in class for non-POD types (according to the current