mirror of
https://github.com/MariaDB/server.git
synced 2026-05-06 23:25:34 +02:00
Rewrite function comments
mysys/array.c: Rewrite functions comments mysys/checksum.c: Rewrite function comment Style cleanup mysys/mulalloc.c: Rewrite function comment mysys/my_chsize.c: Rewrite function comment mysys/my_error.c: Rewrite comments mysys/my_once.c: Rewrite comments mysys/my_div.c: Rewrite comments mysys/my_open.c: Rewrite comments
This commit is contained in:
parent
bfdddfa81f
commit
e797b466b4
8 changed files with 232 additions and 22 deletions
|
|
@ -24,8 +24,17 @@
|
|||
#include "my_static.h"
|
||||
#include "mysys_err.h"
|
||||
|
||||
/* alloc for things we don't nead to free */
|
||||
/* No DBUG_ENTER... here to get smaller dbug-startup */
|
||||
/*
|
||||
Alloc for things we don't nead to free
|
||||
|
||||
SYNOPSIS
|
||||
my_once_alloc()
|
||||
Size
|
||||
MyFlags
|
||||
|
||||
NOTES
|
||||
No DBUG_ENTER... here to get smaller dbug-startup
|
||||
*/
|
||||
|
||||
gptr my_once_alloc(unsigned int Size, myf MyFlags)
|
||||
{
|
||||
|
|
@ -69,7 +78,12 @@ gptr my_once_alloc(unsigned int Size, myf MyFlags)
|
|||
} /* my_once_alloc */
|
||||
|
||||
|
||||
/* deallocate everything used by my_once_alloc */
|
||||
/*
|
||||
Deallocate everything used by my_once_alloc
|
||||
|
||||
SYNOPSIS
|
||||
my_once_free()
|
||||
*/
|
||||
|
||||
void my_once_free(void)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue