~ubuntu-branches/ubuntu/karmic/rsyslog/karmic-200908151517

« back to all changes in this revision

Viewing changes to pidfile.c

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2008-04-23 16:46:39 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080423164639-5acmt8a4vpxjgnxw
Tags: 3.14.2-3
* debian/rsyslog-doc.install
  - Fix a typo in the install path of the dia files. Closes: #477489
    Thanks to Justin B Rye for the patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
    pidfile.c - interact with pidfiles
3
3
    Copyright (c) 1995  Martin Schulze <Martin.Schulze@Linux.DE>
4
4
 
5
 
    This file is part of the sysklogd package, a kernel and system log daemon.
6
 
 
7
 
    This program is free software; you can redistribute it and/or modify
8
 
    it under the terms of the GNU General Public License as published by
9
 
    the Free Software Foundation; either version 2 of the License, or
10
 
    (at your option) any later version.
11
 
 
12
 
    This program is distributed in the hope that it will be useful,
13
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
    GNU General Public License for more details.
16
 
 
17
 
    You should have received a copy of the GNU General Public License
18
 
    along with this program; if not, write to the Free Software
19
 
    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA
 
5
 * This file is part of rsyslog.
 
6
 *
 
7
 * Rsyslog is free software: you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation, either version 3 of the License, or
 
10
 * (at your option) any later version.
 
11
 *
 
12
 * Rsyslog is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with Rsyslog.  If not, see <http://www.gnu.org/licenses/>.
 
19
 *
 
20
 * A copy of the GPL can be found in the file "COPYING" in this distribution.
20
21
*/
21
22
#include "config.h"
22
23
 
39
40
#include <fcntl.h>
40
41
#endif
41
42
 
 
43
#include "srUtils.h"
 
44
 
42
45
/* read_pid
43
46
 *
44
47
 * Reads the specified pidfile and returns the read pid.
108
111
  * 2006-02-16 rgerhards
109
112
  */
110
113
 
111
 
#ifndef __sun
 
114
#if HAVE_FLOCK
112
115
  if (flock(fd, LOCK_EX|LOCK_NB) == -1) {
113
116
      fscanf(f, "%d", &pid);
114
117
      fclose(f);
119
122
 
120
123
  pid = getpid();
121
124
  if (!fprintf(f,"%d\n", pid)) {
122
 
        char errStr[1024];
123
 
      printf("Can't write pid , %s.\n", strerror_r(errno, errStr, sizeof(errStr)));
 
125
      char errStr[1024];
 
126
      rs_strerror_r(errno, errStr, sizeof(errStr));
 
127
      printf("Can't write pid , %s.\n", errStr);
124
128
      close(fd);
125
129
      return 0;
126
130
  }
127
131
  fflush(f);
128
132
 
129
 
#ifndef __sun
 
133
#if HAVE_FLOCK
130
134
  if (flock(fd, LOCK_UN) == -1) {
131
 
        char errStr[1024];
132
 
      printf("Can't unlock pidfile %s, %s.\n", pidfile, strerror_r(errno, errStr, sizeof(errStr)));
 
135
      char errStr[1024];
 
136
      rs_strerror_r(errno, errStr, sizeof(errStr));
 
137
      printf("Can't unlock pidfile %s, %s.\n", pidfile, errStr);
133
138
      close(fd);
134
139
      return 0;
135
140
  }