blob: 19bf9059c8c6fd6b39b7b5d6f9dfe4421a9c2a79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#ifndef deliverdotlock_h
#define deliverdotlock_h
////////////////////////////////////////////////////////////////////////////
//
// When delivering to a mailbox, and there's an exception, the mailbox
// must be truncated BEFORE the dot lock is released. Override the cleanup()
// virtual function to do the truncation first.
//
////////////////////////////////////////////////////////////////////////////
#include "config.h"
#include "dotlock.h"
#include <sys/types.h>
#include <sys/stat.h>
class DeliverDotLock : public DotLock {
void cleanup();
int truncate_fd;
off_t truncate_size;
public:
DeliverDotLock();
~DeliverDotLock();
void trap_truncate(int f, off_t size)
{
truncate_size=size;
truncate_fd=f;
}
void remove_trap() { truncate_fd= -1; }
void truncate();
} ;
#endif
|