iPXE
pending.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012 Michael Brown <mbrown@fensystems.co.uk>.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301, USA.
18  *
19  * You can also choose to distribute this program under the terms of
20  * the Unmodified Binary Distribution Licence (as given in the file
21  * COPYING.UBDL), provided that you have satisfied its requirements.
22  */
23 
24 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
25 FILE_SECBOOT ( PERMITTED );
26 
27 #include <errno.h>
28 #include <ipxe/process.h>
29 #include <ipxe/timer.h>
30 #include <ipxe/pending.h>
31 
32 /** @file
33  *
34  * Pending operations
35  *
36  */
37 
38 /** Total count of pending operations */
40 
41 /**
42  * Mark an operation as pending
43  *
44  * @v pending Pending operation
45  */
47 
48  pending->count++;
49  pending_total++;
50  DBGC ( pending, "PENDING %p incremented to %d (total %d)\n",
51  pending, pending->count, pending_total );
52 }
53 
54 /**
55  * Mark an operation as no longer pending
56  *
57  * @v pending Pending operation
58  */
60 
61  if ( pending->count ) {
62  pending_total--;
63  pending->count--;
64  DBGC ( pending, "PENDING %p decremented to %d (total %d)\n",
65  pending, pending->count, pending_total );
66  }
67 }
Error codes.
FILE_SECBOOT(PERMITTED)
void pending_put(struct pending_operation *pending)
Mark an operation as no longer pending.
Definition: pending.c:59
#define DBGC(...)
Definition: compiler.h:505
iPXE timers
uint32_t pending
Pending events.
Definition: hyperv.h:12
Processes.
int pending_total
Total count of pending operations.
Definition: pending.c:39
Pending operations.
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)
A pending operation.
Definition: pending.h:14
void pending_get(struct pending_operation *pending)
Mark an operation as pending.
Definition: pending.c:46