Below is the list of changes that have just been committed into a local
5.0 repository of pem. When pem does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet
1.1944 05/07/15 16:57:41 pem@stripped +2 -0
Made .c files compile with a C compiler.
ndb/src/common/portlib/NdbThread.c
1.22 05/07/15 16:57:34 pem@stripped +1 -1
Turned into C code.
ndb/src/common/portlib/NdbMutex.c
1.7 05/07/15 16:57:34 pem@stripped +2 -2
Turned into C code.
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: pem
# Host: mysql.comhem.se
# Root: /home/pem/work/mysql-5.0
--- 1.6/ndb/src/common/portlib/NdbMutex.c 2005-07-14 17:54:32 +02:00
+++ 1.7/ndb/src/common/portlib/NdbMutex.c 2005-07-15 16:57:34 +02:00
@@ -23,9 +23,9 @@
NdbMutex* NdbMutex_Create(void)
{
- DBUG_ENTER("NdbMutex_Create");
NdbMutex* pNdbMutex;
int result;
+ DBUG_ENTER("NdbMutex_Create");
pNdbMutex = (NdbMutex*)NdbMem_Allocate(sizeof(NdbMutex));
DBUG_PRINT("info",("NdbMem_Allocate 0x%lx",pNdbMutex));
@@ -42,8 +42,8 @@
int NdbMutex_Destroy(NdbMutex* p_mutex)
{
- DBUG_ENTER("NdbMutex_Destroy");
int result;
+ DBUG_ENTER("NdbMutex_Destroy");
if (p_mutex == NULL)
DBUG_RETURN(-1);
--- 1.21/ndb/src/common/portlib/NdbThread.c 2005-07-14 17:54:32 +02:00
+++ 1.22/ndb/src/common/portlib/NdbThread.c 2005-07-15 16:57:34 +02:00
@@ -71,10 +71,10 @@
const char* p_thread_name,
NDB_THREAD_PRIO thread_prio)
{
- DBUG_ENTER("NdbThread_Create");
struct NdbThread* tmpThread;
int result;
pthread_attr_t thread_attr;
+ DBUG_ENTER("NdbThread_Create");
(void)thread_prio; /* remove warning for unused parameter */
| Thread |
|---|
| • bk commit into 5.0 tree (pem:1.1944) | pem | 15 Jul |