Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
b99ac059
Commit
b99ac059
authored
21 years ago
by
rswindell
Browse files
Options
Downloads
Patches
Plain Diff
Using correct prototype for sopen() - including pmode when used with O_CREAT.
parent
16368def
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/xpdev/filewrap.c
+12
-11
12 additions, 11 deletions
src/xpdev/filewrap.c
src/xpdev/filewrap.h
+4
-9
4 additions, 9 deletions
src/xpdev/filewrap.h
with
16 additions
and
20 deletions
src/xpdev/filewrap.c
+
12
−
11
View file @
b99ac059
...
...
@@ -8,7 +8,7 @@
* @format.tab-size 4 (Plain Text/Source Code File Header) *
* @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
* *
* Copyright 200
2
Rob Swindell - http://www.synchro.net/copyright.html *
* Copyright 200
3
Rob Swindell - http://www.synchro.net/copyright.html *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public License *
...
...
@@ -152,25 +152,26 @@ int DLLCALL unlock(int fd, long pos, int len)
}
/* Opens a file in specified sharing (file-locking) mode */
#ifdef __QNX__
int
DLLCALL
qnx_sopen
(
char
*
fn
,
int
access
,
int
share
)
{
#undef sopen
/* Stupid macro trick */
return
(
sopen
(
fn
,
access
,
share
,
S_IREAD
|
S_IWRITE
));
#define sopen(x,y,z) qnx_sopen(x,y,z)
}
#else
int
DLLCALL
sopen
(
char
*
fn
,
int
access
,
int
share
)
#if !defined(__QNX__)
int
DLLCALL
sopen
(
const
char
*
fn
,
int
access
,
int
share
,
...)
{
int
fd
;
int
pmode
=
S_IREAD
;
#ifndef F_SANEWRLCKNO
int
flock_op
=
LOCK_NB
;
/* non-blocking */
#endif
#if defined(F_SANEWRLCKNO) || !defined(BSD)
struct
flock
alock
;
#endif
va_list
ap
;
if
(
access
&
O_CREAT
)
{
va_start
(
ap
,
share
);
pmode
=
va_arg
(
ap
,
unsigned
int
));
va_end
(
ap
);
}
if
((
fd
=
open
(
fn
,
access
,
S_IREAD
|
S_IWRITE
))
<
0
)
if
((
fd
=
open
(
fn
,
access
,
pmode
))
<
0
)
return
-
1
;
if
(
share
==
SH_DENYNO
)
/* no lock needed */
...
...
This diff is collapsed.
Click to expand it.
src/xpdev/filewrap.h
+
4
−
9
View file @
b99ac059
...
...
@@ -8,7 +8,7 @@
* @format.tab-size 4 (Plain Text/Source Code File Header) *
* @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
* *
* Copyright 200
2
Rob Swindell - http://www.synchro.net/copyright.html *
* Copyright 200
3
Rob Swindell - http://www.synchro.net/copyright.html *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public License *
...
...
@@ -59,9 +59,6 @@
#include
<windows.h>
/* OF_SHARE_ */
#include
<share.h>
/* SH_DENY */
#define sopen(f,o,s) _sopen(f,o,s,S_IREAD|S_IWRITE)
#define close(f) _close(f)
#ifndef SH_DENYNO
#define SH_DENYNO OF_SHARE_DENY_NONE
#define SH_DENYWR OF_SHARE_DENY_WRITE
...
...
@@ -122,11 +119,9 @@ extern "C" {
#endif
#if !defined(__BORLANDC__) && defined(__unix__)
#if defined(__QNX__)
DLLEXPORT
int
DLLCALL
qnx_sopen
(
char
*
fn
,
int
access
,
int
share
);
#else
DLLEXPORT
int
DLLCALL
sopen
(
char
*
fn
,
int
access
,
int
share
);
#endif
/* !QNX */
#if !defined(__QNX__)
DLLEXPORT
int
DLLCALL
sopen
(
const
char
*
fn
,
int
access
,
int
share
,
...);
#endif
DLLEXPORT
long
DLLCALL
filelength
(
int
fd
);
#endif
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment