class IO

def writev2(components, components2)

io.writev2(["hello ", "world", "\n"], ["another ", "message\n"])

Like #writev, but accepts two arrays. The data is written in the given order.
def writev2(components, components2)
	return PhusionPassenger::NativeSupport.writev2(fileno,
		components, components2)
end