Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
74693a28
Commit
74693a28
authored
May 25, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge joreland@bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/home/jonas/src/mysql-5.0
parents
115d3410
f0f9b595
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
20 additions
and
13 deletions
+20
-13
extra/yassl/include/yassl_int.hpp
extra/yassl/include/yassl_int.hpp
+4
-2
extra/yassl/src/log.cpp
extra/yassl/src/log.cpp
+3
-3
extra/yassl/src/yassl_int.cpp
extra/yassl/src/yassl_int.cpp
+5
-4
extra/yassl/taocrypt/include/integer.hpp
extra/yassl/taocrypt/include/integer.hpp
+1
-1
extra/yassl/taocrypt/src/integer.cpp
extra/yassl/taocrypt/src/integer.cpp
+3
-0
innobase/srv/srv0start.c
innobase/srv/srv0start.c
+4
-3
No files found.
extra/yassl/include/yassl_int.hpp
View file @
74693a28
...
@@ -122,7 +122,8 @@ public:
...
@@ -122,7 +122,8 @@ public:
friend
sslFactory
&
GetSSL_Factory
();
// singleton creator
friend
sslFactory
&
GetSSL_Factory
();
// singleton creator
private:
private:
static
sslFactory
instance
;
static
sslFactory
instance_
;
sslFactory
(
const
sslFactory
&
);
// hide copy
sslFactory
(
const
sslFactory
&
);
// hide copy
sslFactory
&
operator
=
(
const
sslFactory
&
);
// and assign
sslFactory
&
operator
=
(
const
sslFactory
&
);
// and assign
};
};
...
@@ -207,9 +208,10 @@ public:
...
@@ -207,9 +208,10 @@ public:
friend
Sessions
&
GetSessions
();
// singleton creator
friend
Sessions
&
GetSessions
();
// singleton creator
private:
private:
static
Sessions
instance_
;
Sessions
(
const
Sessions
&
);
// hide copy
Sessions
(
const
Sessions
&
);
// hide copy
Sessions
&
operator
=
(
const
Sessions
&
);
// and assign
Sessions
&
operator
=
(
const
Sessions
&
);
// and assign
static
Sessions
instance
;
};
};
...
...
extra/yassl/src/log.cpp
View file @
74693a28
...
@@ -26,9 +26,9 @@
...
@@ -26,9 +26,9 @@
#include "log.hpp"
#include "log.hpp"
#ifdef YASSL_LOG
#ifdef YASSL_LOG
#include <
ctime
>
#include <
time.h
>
#include <
cstdio
>
#include <
stdio.h
>
#include <
cstring
>
#include <
string.h
>
#endif
#endif
...
...
extra/yassl/src/yassl_int.cpp
View file @
74693a28
...
@@ -1324,18 +1324,19 @@ SSL_SESSION::~SSL_SESSION()
...
@@ -1324,18 +1324,19 @@ SSL_SESSION::~SSL_SESSION()
}
}
Sessions
Sessions
::
instance
;
// simple singleton
Sessions
Sessions
::
instance
_
;
// simple singleton
Sessions
&
GetSessions
()
Sessions
&
GetSessions
()
{
{
return
Sessions
::
instance
;
return
Sessions
::
instance
_
;
}
}
sslFactory
sslFactory
::
instance
;
sslFactory
sslFactory
::
instance_
;
// simple singleton
sslFactory
&
GetSSL_Factory
()
sslFactory
&
GetSSL_Factory
()
{
{
return
sslFactory
::
instance
;
return
sslFactory
::
instance
_
;
}
}
...
...
extra/yassl/taocrypt/include/integer.hpp
View file @
74693a28
...
@@ -251,11 +251,11 @@ public:
...
@@ -251,11 +251,11 @@ public:
private:
private:
friend
class
ModularArithmetic
;
friend
class
ModularArithmetic
;
friend
class
MontgomeryRepresentation
;
friend
class
MontgomeryRepresentation
;
Integer
(
word
value
,
unsigned
int
length
);
static
const
Integer
zero
;
static
const
Integer
zero
;
static
const
Integer
one
;
static
const
Integer
one
;
static
const
Integer
two
;
static
const
Integer
two
;
Integer
(
word
value
,
unsigned
int
length
);
int
PositiveCompare
(
const
Integer
&
t
)
const
;
int
PositiveCompare
(
const
Integer
&
t
)
const
;
friend
void
PositiveAdd
(
Integer
&
sum
,
const
Integer
&
a
,
const
Integer
&
b
);
friend
void
PositiveAdd
(
Integer
&
sum
,
const
Integer
&
a
,
const
Integer
&
b
);
...
...
extra/yassl/taocrypt/src/integer.cpp
View file @
74693a28
...
@@ -3948,6 +3948,9 @@ Integer CRT(const Integer &xp, const Integer &p, const Integer &xq,
...
@@ -3948,6 +3948,9 @@ Integer CRT(const Integer &xp, const Integer &p, const Integer &xq,
#ifdef __GNUC__
#ifdef __GNUC__
template
unsigned
int
DivideThreeWordsByTwo
<
unsigned
int
,
DWord
>(
unsigned
int
*
,
unsigned
int
,
unsigned
int
,
DWord
*
);
template
unsigned
int
DivideThreeWordsByTwo
<
unsigned
int
,
DWord
>(
unsigned
int
*
,
unsigned
int
,
unsigned
int
,
DWord
*
);
#if defined(SSE2_INTRINSICS_AVAILABLE)
template
AlignedAllocator
<
unsigned
int
>
::
pointer
StdReallocate
<
unsigned
int
,
AlignedAllocator
<
unsigned
int
>
>
(
AlignedAllocator
<
unsigned
int
>&
,
unsigned
int
*
,
AlignedAllocator
<
unsigned
int
>::
size_type
,
AlignedAllocator
<
unsigned
int
>::
size_type
,
bool
);
#endif
#endif
#endif
}
// namespace
}
// namespace
...
...
innobase/srv/srv0start.c
View file @
74693a28
...
@@ -1736,7 +1736,7 @@ innobase_shutdown_for_mysql(void)
...
@@ -1736,7 +1736,7 @@ innobase_shutdown_for_mysql(void)
" InnoDB: MySQL has requested a very fast shutdown without flushing "
" InnoDB: MySQL has requested a very fast shutdown without flushing "
"the InnoDB buffer pool to data files. At the next mysqld startup "
"the InnoDB buffer pool to data files. At the next mysqld startup "
"InnoDB will do a crash recovery!
\n
"
);
"InnoDB will do a crash recovery!
\n
"
);
}
}
#ifdef __NETWARE__
#ifdef __NETWARE__
if
(
!
panic_shutdown
)
if
(
!
panic_shutdown
)
...
@@ -1758,8 +1758,9 @@ innobase_shutdown_for_mysql(void)
...
@@ -1758,8 +1758,9 @@ innobase_shutdown_for_mysql(void)
to die; all which counts is that we flushed the log; a 'very fast'
to die; all which counts is that we flushed the log; a 'very fast'
shutdown is essentially a crash. */
shutdown is essentially a crash. */
if
(
srv_fast_shutdown
)
if
(
srv_fast_shutdown
==
2
)
{
return
((
int
)
DB_SUCCESS
);
return
(
DB_SUCCESS
);
}
/* All threads end up waiting for certain events. Put those events
/* All threads end up waiting for certain events. Put those events
to the signaled state. Then the threads will exit themselves in
to the signaled state. Then the threads will exit themselves in
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment