Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZODB
Commits
b01f4057
Commit
b01f4057
authored
May 18, 2007
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed the no-longer needed winlock module.
parent
88262d7a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
110 deletions
+0
-110
setup.py
setup.py
+0
-5
src/ZODB/winlock.c
src/ZODB/winlock.c
+0
-105
No files found.
setup.py
View file @
b01f4057
...
...
@@ -162,15 +162,10 @@ TimeStamp = Extension(name = 'persistent.TimeStamp',
sources
=
[
'src/persistent/TimeStamp.c'
]
)
winlock
=
Extension
(
name
=
'ZODB.winlock'
,
include_dirs
=
include
,
sources
=
[
'src/ZODB/winlock.c'
]
)
exts
+=
[
cPersistence
,
cPickleCache
,
TimeStamp
,
winlock
,
]
# The ZODB.zodb4 code is not being packaged, because it is only
...
...
src/ZODB/winlock.c
deleted
100755 → 0
View file @
88262d7a
/*****************************************************************************
Copyright (c) 2001, 2002 Zope Corporation and Contributors.
All Rights Reserved.
This software is subject to the provisions of the Zope Public License,
Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
FOR A PARTICULAR PURPOSE
****************************************************************************/
static
char
winlock_doc_string
[]
=
"Lock files on Windows."
"
\n
"
"$Id$
\n
"
;
#include "Python.h"
static
PyObject
*
Error
;
#ifdef MS_WIN32
#include <windows.h>
#include <io.h>
/* LOCK_FUNC is the shared type of Win32 LockFile and UnlockFile. */
typedef
WINBASEAPI
BOOL
WINAPI
LOCK_FUNC
(
HANDLE
,
DWORD
,
DWORD
,
DWORD
,
DWORD
);
static
PyObject
*
common
(
LOCK_FUNC
func
,
PyObject
*
args
)
{
int
fileno
;
long
h
,
ofslo
,
ofshi
,
lenlo
,
lenhi
;
if
(
!
PyArg_ParseTuple
(
args
,
"illll"
,
&
fileno
,
&
ofslo
,
&
ofshi
,
&
lenlo
,
&
lenhi
))
return
NULL
;
h
=
_get_osfhandle
(
fileno
);
if
(
h
==
-
1
)
{
PyErr_SetString
(
Error
,
"_get_osfhandle failed"
);
return
NULL
;
}
if
(
func
((
HANDLE
)
h
,
ofslo
,
ofshi
,
lenlo
,
lenhi
))
{
Py_INCREF
(
Py_None
);
return
Py_None
;
}
PyErr_SetObject
(
Error
,
PyInt_FromLong
(
GetLastError
()));
return
NULL
;
}
static
PyObject
*
winlock
(
PyObject
*
ignored
,
PyObject
*
args
)
{
return
common
(
LockFile
,
args
);
}
static
PyObject
*
winunlock
(
PyObject
*
ignored
,
PyObject
*
args
)
{
return
common
(
UnlockFile
,
args
);
}
static
struct
PyMethodDef
methods
[]
=
{
{
"LockFile"
,
(
PyCFunction
)
winlock
,
METH_VARARGS
,
"LockFile(fileno, offsetLow, offsetHigh, lengthLow, lengthHigh) -- "
"Lock the file associated with fileno"
},
{
"UnlockFile"
,
(
PyCFunction
)
winunlock
,
METH_VARARGS
,
"UnlockFile(fileno, offsetLow, offsetHigh, lengthLow, lengthHigh) -- "
"Unlock the file associated with fileno"
},
{
NULL
,
NULL
}
/* sentinel */
};
#else
static
struct
PyMethodDef
methods
[]
=
{
{
NULL
,
NULL
}
/* sentinel */
};
#endif
/* Initialization function for the module (*must* be called initwinlock) */
#ifndef DL_EXPORT
/* declarations for DLL import/export */
#define DL_EXPORT(RTYPE) RTYPE
#endif
DL_EXPORT
(
void
)
initwinlock
(
void
)
{
PyObject
*
m
,
*
d
;
if
(
!
(
Error
=
PyString_FromString
(
"winlock.error"
)))
return
;
/* Create the module and add the functions */
m
=
Py_InitModule4
(
"winlock"
,
methods
,
winlock_doc_string
,
(
PyObject
*
)
NULL
,
PYTHON_API_VERSION
);
d
=
PyModule_GetDict
(
m
);
PyDict_SetItemString
(
d
,
"error"
,
Error
);
}
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