File: mymutex.c

package info (click to toggle)
prayer 1.3.5-dfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 6,552 kB
  • ctags: 3,458
  • sloc: ansic: 43,164; makefile: 815; sh: 451; perl: 166
file content (16 lines) | stat: -rw-r--r-- 510 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* $Cambridge: hermes/src/prayer/lib/mymutex.c,v 1.4 2009/10/16 14:56:29 dpc22 Exp $ */

/************************************************
 *    Prayer - a Webmail Interface              *
 ************************************************/

/* Copyright (c) University of Cambridge 2000 - 2008 */
/* See the file NOTICE for conditions of use and distribution. */

#include "lib.h"

#if defined(MUTEX_SEMAPHORE) && !defined(__stub_semtimedop)
#  include "mymutex_sem.c"
#else
#  include "mymutex_file.c"
#endif