DD1984 / sockperf

Automatically exported from code.google.com/p/sockperf
Other
1 stars 0 forks source link

New method server_accept() is inlined with no need #19

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
This method "jumps" from fast path to slow path for accepting new connection.
There is no need to inline it since inlining it increases the code of the fast 
path for no need.
please remove the inline directive from such methods and move their 
implementation to *.cpp file (otherwise, it is implicitly inline directive)

Original issue reported on code.google.com by igor.ivanov@itseez.com on 4 Apr 2011 at 6:33

GoogleCodeExporter commented 9 years ago
imported from: http://argus-bg.dnsalias.org/issues/711

Original comment by igor.ivanov@itseez.com on 4 Apr 2011 at 7:13

GoogleCodeExporter commented 9 years ago
r46

Original comment by igor.ivanov@itseez.com on 8 Apr 2011 at 11:34