X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=close_on_fork.c;h=655dbc562a9dc2ed55711fad44a1dab713db25b9;hp=378799c7d5505135d59e976cd43416984c9500a6;hb=4791d009b3a2952e9c1d2bef22a5f301d28ed2a0;hpb=178acbc7280b6d4464bf0314ca348f9105366f23 diff --git a/close_on_fork.c b/close_on_fork.c index 378799c7..655dbc56 100644 --- a/close_on_fork.c +++ b/close_on_fork.c @@ -1,13 +1,17 @@ /* - * Copyright (C) 2005-2009 Andre Noll + * Copyright (C) 2005 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ /** \file close_on_fork.c Manage a list of fds that should be closed on fork. */ + +#include + #include "para.h" #include "list.h" #include "string.h" +#include "close_on_fork.h" static struct list_head close_on_fork_list; static int initialized; @@ -15,7 +19,7 @@ static int initialized; /** * Describes an element of the close-on-fork list. * - * \sa list.h + * \sa \ref list.h. */ struct close_on_fork { /** The file descriptor which should be closed after fork(). */