Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
c1c8a57b
Commit
c1c8a57b
authored
Aug 04, 1992
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* myselect.h: bzero -> memset
* select.c: bzero -> memset; removed global variable
parent
68789ef2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
13 deletions
+13
-13
Include/myselect.h
Include/myselect.h
+1
-1
Modules/selectmodule.c
Modules/selectmodule.c
+12
-12
No files found.
Include/myselect.h
View file @
c1c8a57b
...
...
@@ -75,6 +75,6 @@ typedef struct fd_set {
#define FD_SET(n, p) ((p)->fds_bits[(n)/NFDBITS] |= (1 << ((n) % NFDBITS)))
#define FD_CLR(n, p) ((p)->fds_bits[(n)/NFDBITS] &= ~(1 << ((n) % NFDBITS)))
#define FD_ISSET(n, p) ((p)->fds_bits[(n)/NFDBITS] & (1 << ((n) % NFDBITS)))
#define FD_ZERO(p)
bzero((char *)(p)
, sizeof(*(p)))
#define FD_ZERO(p)
memset((char *)(p), '\0'
, sizeof(*(p)))
#endif
/* FD_SET */
Modules/selectmodule.c
View file @
c1c8a57b
...
...
@@ -33,13 +33,11 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
static
object
*
SelectError
;
/* XXX This module should be re-entrant! */
static
object
*
fd2obj
[
FD_SETSIZE
];
static
list2set
(
list
,
set
)
list2set
(
list
,
set
,
fd2obj
)
object
*
list
;
fd_set
*
set
;
object
*
fd2obj
[
FD_SETSIZE
];
{
int
i
,
len
,
v
,
max
=-
1
;
object
*
o
,
*
filenomethod
,
*
fno
;
...
...
@@ -76,9 +74,10 @@ list2set(list, set)
}
static
object
*
set2list
(
set
,
max
)
set2list
(
set
,
max
,
fd2obj
)
fd_set
*
set
;
int
max
;
object
*
fd2obj
[
FD_SETSIZE
];
{
int
i
,
num
=
0
;
object
*
list
,
*
o
;
...
...
@@ -112,6 +111,7 @@ select_select(self, args)
object
*
self
;
object
*
args
;
{
object
*
fd2obj
[
FD_SETSIZE
];
object
*
ifdlist
,
*
ofdlist
,
*
efdlist
;
fd_set
ifdset
,
ofdset
,
efdset
;
double
timeout
;
...
...
@@ -141,14 +141,14 @@ select_select(self, args)
return
0
;
}
bzero
((
char
*
)
fd2obj
,
sizeof
(
fd2obj
));
/* Not really needed */
memset
((
char
*
)
fd2obj
,
'\0'
,
sizeof
(
fd2obj
));
/* Convert lists to fd_sets, and get maximum fd number */
if
(
(
imax
=
list2set
(
ifdlist
,
&
ifdset
))
<
0
)
if
(
(
imax
=
list2set
(
ifdlist
,
&
ifdset
,
fd2obj
))
<
0
)
return
0
;
if
(
(
omax
=
list2set
(
ofdlist
,
&
ofdset
))
<
0
)
if
(
(
omax
=
list2set
(
ofdlist
,
&
ofdset
,
fd2obj
))
<
0
)
return
0
;
if
(
(
emax
=
list2set
(
efdlist
,
&
efdset
))
<
0
)
if
(
(
emax
=
list2set
(
efdlist
,
&
efdset
,
fd2obj
))
<
0
)
return
0
;
max
=
imax
;
if
(
omax
>
max
)
max
=
omax
;
...
...
@@ -164,9 +164,9 @@ select_select(self, args)
if
(
n
==
0
)
imax
=
omax
=
emax
=
0
;
/* Speedup hack */
ifdlist
=
set2list
(
&
ifdset
,
imax
);
ofdlist
=
set2list
(
&
ofdset
,
omax
);
efdlist
=
set2list
(
&
efdset
,
emax
);
ifdlist
=
set2list
(
&
ifdset
,
imax
,
fd2obj
);
ofdlist
=
set2list
(
&
ofdset
,
omax
,
fd2obj
);
efdlist
=
set2list
(
&
efdset
,
emax
,
fd2obj
);
return
mkvalue
(
"OOO"
,
ifdlist
,
ofdlist
,
efdlist
);
}
...
...
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