mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-15 21:59:41 -04:00
[CLEANUP] fd.h : regparm was hardcoded.
This commit is contained in:
parent
bf73613543
commit
fddaec02ee
1 changed files with 3 additions and 3 deletions
|
|
@ -52,9 +52,9 @@ void fd_delete(int fd);
|
|||
# define MY_FD_CLR my_fd_clr
|
||||
# define MY_FD_ISSET my_fd_isset
|
||||
|
||||
void __attribute__((regparm(2))) my_fd_set(const int fd, fd_set *ev);
|
||||
void __attribute__((regparm(2))) my_fd_clr(const int fd, fd_set *ev);
|
||||
int __attribute__((regparm(2))) my_fd_isset(const int fd, const fd_set *ev);
|
||||
REGPRM2 void my_fd_set(const int fd, fd_set *ev);
|
||||
REGPRM2 void my_fd_clr(const int fd, fd_set *ev);
|
||||
REGPRM2 int my_fd_isset(const int fd, const fd_set *ev);
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue