Skip to content

Commit acbc0b0

Browse files
committed
Change BCAST_FLAG_* to SLURM_BIT
Issue #2
1 parent 8875a02 commit acbc0b0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/bcast/file_bcast.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@
4040
#include "src/common/macros.h"
4141
#include "src/common/slurm_protocol_defs.h"
4242

43-
#define BCAST_FLAG_FORCE 0x0001
44-
#define BCAST_FLAG_PRESERVE 0x0002
45-
#define BCAST_FLAG_SEND_LIBS 0x0004
46-
#define BCAST_FLAG_SHARED_OBJECT 0x0008
43+
#define BCAST_FLAG_FORCE SLURM_BIT(0)
44+
#define BCAST_FLAG_PRESERVE SLURM_BIT(1)
45+
#define BCAST_FLAG_SEND_LIBS SLURM_BIT(2)
46+
#define BCAST_FLAG_SHARED_OBJECT SLURM_BIT(3)
4747

4848
struct bcast_parameters {
4949
uint32_t block_size;

0 commit comments

Comments
 (0)