From: Corey Kosak Date: Sat, 23 Jan 2016 00:10:21 +0000 (-0500) Subject: Provide a unified signature for ps_get_cmdline. X-Git-Tag: collectd-5.5.2~6^2~43 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=bb978c10e7b6cde5be79ade8b14fcdbb78f7b8ea;hp=bb978c10e7b6cde5be79ade8b14fcdbb78f7b8ea;p=collectd.git Provide a unified signature for ps_get_cmdline. Prior to this change, ps_get_cmdline had different signatures for KERNEL_LINUX vs. KERNEL_SOLARIS. This means that callers who want to call this function would have to have an #if..#else that controlled which variant of the function to call. By giving them the same signature, callers don't have to worry about that. ---