I was just going thro' source code of Yahoo's Trafic Server It is written in C++.
In almost all methods (from one of modules),
they do void(param) on each param that function receive.
(Eg below)
Can someone explain what this could be for ?
int
some_method_name(caddr_t addr, size_t len, caddr_t end,
int flags)
{
(void) end;
(void) addr;
(void) len;
(void) end;
(void) flags;
......
....
}
PS: For actual source code, please see methods from http://github.com/apache/trafficserver/blob/trunk/iocore/eventsystem/SocketManager.cc
int some_method_name(caddr_t addr, size_t, caddr_t, int)if you're not using some parameters. – Bertrand Marron Mar 6 '10 at 12:21#if (HOST_OS == linux)). – Georg Fritzsche Mar 6 '10 at 13:12