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
15fe22ff
Commit
15fe22ff
authored
Dec 09, 2010
by
Ramil Kalimullin
Browse files
Options
Browse Files
Download
Plain Diff
Manual merge with mysql-5.1-bugteam.
parents
4e9fb2c7
cc128834
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
7 deletions
+16
-7
include/mysys_err.h
include/mysys_err.h
+2
-1
mysys/errors.c
mysys/errors.c
+2
-0
mysys/my_seek.c
mysys/my_seek.c
+11
-4
mysys/my_symlink.c
mysys/my_symlink.c
+1
-2
No files found.
include/mysys_err.h
View file @
15fe22ff
...
...
@@ -65,7 +65,8 @@ extern const char *globerrs[]; /* my_error_messages is here */
#define EE_FILE_NOT_CLOSED 30
#define EE_CHANGE_OWNERSHIP 31
#define EE_CHANGE_PERMISSIONS 32
#define EE_ERROR_LAST 32
/* Copy last error nr */
#define EE_CANT_SEEK 33
#define EE_ERROR_LAST 33
/* Copy last error nr */
/* Add error numbers before EE_ERROR_LAST and change it accordingly. */
/* exit codes for all MySQL programs */
...
...
mysys/errors.c
View file @
15fe22ff
...
...
@@ -52,6 +52,7 @@ const char *globerrs[GLOBERRS]=
"File '%s' (fileno: %d) was not closed"
,
"Can't change ownership of the file '%s' (Errcode: %d)"
,
"Can't change permissions of the file '%s' (Errcode: %d)"
,
"Can't seek in file '%s' (Errcode: %d)"
};
void
init_glob_errs
(
void
)
...
...
@@ -94,6 +95,7 @@ void init_glob_errs()
EE
(
EE_FILE_NOT_CLOSED
)
=
"File '%s' (fileno: %d) was not closed"
;
EE
(
EE_CHANGE_OWNERSHIP
)
=
"Can't change ownership of the file '%s' (Errcode: %d)"
;
EE
(
EE_CHANGE_PERMISSIONS
)
=
"Can't change permissions of the file '%s' (Errcode: %d)"
;
EE
(
EE_CANT_SEEK
)
=
"Can't seek in file '%s' (Errcode: %d)"
;
}
#endif
...
...
mysys/my_seek.c
View file @
15fe22ff
...
...
@@ -14,6 +14,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include "mysys_priv.h"
#include "mysys_err.h"
/*
Seek to a position in a file.
...
...
@@ -42,8 +43,7 @@
actual error.
*/
my_off_t
my_seek
(
File
fd
,
my_off_t
pos
,
int
whence
,
myf
MyFlags
__attribute__
((
unused
)))
my_off_t
my_seek
(
File
fd
,
my_off_t
pos
,
int
whence
,
myf
MyFlags
)
{
os_off_t
newpos
=
-
1
;
DBUG_ENTER
(
"my_seek"
);
...
...
@@ -63,7 +63,9 @@ my_off_t my_seek(File fd, my_off_t pos, int whence,
if
(
newpos
==
(
os_off_t
)
-
1
)
{
my_errno
=
errno
;
DBUG_PRINT
(
"error"
,(
"lseek: %llu errno: %d"
,
(
ulonglong
)
newpos
,
errno
));
if
(
MyFlags
&
MY_WME
)
my_error
(
EE_CANT_SEEK
,
MYF
(
0
),
my_filename
(
fd
),
my_errno
);
DBUG_PRINT
(
"error"
,
(
"lseek: %llu errno: %d"
,
(
ulonglong
)
newpos
,
errno
));
DBUG_RETURN
(
MY_FILEPOS_ERROR
);
}
if
((
my_off_t
)
newpos
!=
pos
)
...
...
@@ -77,7 +79,7 @@ my_off_t my_seek(File fd, my_off_t pos, int whence,
/* Tell current position of file */
/* ARGSUSED */
my_off_t
my_tell
(
File
fd
,
myf
MyFlags
__attribute__
((
unused
))
)
my_off_t
my_tell
(
File
fd
,
myf
MyFlags
)
{
os_off_t
pos
;
DBUG_ENTER
(
"my_tell"
);
...
...
@@ -89,7 +91,12 @@ my_off_t my_tell(File fd, myf MyFlags __attribute__((unused)))
pos
=
my_seek
(
fd
,
0L
,
MY_SEEK_CUR
,
0
);
#endif
if
(
pos
==
(
os_off_t
)
-
1
)
{
my_errno
=
errno
;
if
(
MyFlags
&
MY_WME
)
my_error
(
EE_CANT_SEEK
,
MYF
(
0
),
my_filename
(
fd
),
my_errno
);
DBUG_PRINT
(
"error"
,
(
"tell: %llu errno: %d"
,
(
ulonglong
)
pos
,
my_errno
));
}
DBUG_PRINT
(
"exit"
,(
"pos: %llu"
,
(
ulonglong
)
pos
));
DBUG_RETURN
((
my_off_t
)
pos
);
}
/* my_tell */
mysys/my_symlink.c
View file @
15fe22ff
...
...
@@ -118,8 +118,7 @@ int my_is_symlink(const char *filename __attribute__((unused)))
'to' may be equal to 'filename'
*/
int
my_realpath
(
char
*
to
,
const
char
*
filename
,
myf
MyFlags
__attribute__
((
unused
)))
int
my_realpath
(
char
*
to
,
const
char
*
filename
,
myf
MyFlags
)
{
#if defined(HAVE_REALPATH) && !defined(HAVE_BROKEN_REALPATH)
int
result
=
0
;
...
...
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