Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
videolan
vlc
Commits
4fe23efc
Commit
4fe23efc
authored
Jun 30, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input: avoid heap-allocation in vlc_poll_i11e() in most cases
parent
2bd02c89
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
7 deletions
+16
-7
src/misc/interrupt.c
src/misc/interrupt.c
+16
-7
No files found.
src/misc/interrupt.c
View file @
4fe23efc
...
...
@@ -328,6 +328,14 @@ int vlc_poll_i11e(struct pollfd *fds, unsigned nfds, int timeout)
int
ret
;
if
(
likely
(
nfds
<
255
))
{
/* Fast path with stack allocation */
struct
pollfd
ufd
[
nfds
+
1
];
ret
=
vlc_poll_i11e_inner
(
fds
,
nfds
,
timeout
,
ctx
,
ufd
);
}
else
{
/* Slow path but poll() is slow with large nfds anyway. */
struct
pollfd
*
ufd
=
malloc
((
nfds
+
1
)
*
sizeof
(
*
ufd
));
if
(
unlikely
(
ufd
==
NULL
))
return
-
1
;
/* ENOMEM */
...
...
@@ -336,6 +344,7 @@ int vlc_poll_i11e(struct pollfd *fds, unsigned nfds, int timeout)
ret
=
vlc_poll_i11e_inner
(
fds
,
nfds
,
timeout
,
ctx
,
ufd
);
vlc_cleanup_pop
();
free
(
ufd
);
}
return
ret
;
}
...
...
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