nbos

nbos

https://git.tonybtw.com/nbos.git git://git.tonybtw.com/nbos.git
351 bytes raw
1
#ifndef NB_ACTIVATE_H
2
#define NB_ACTIVATE_H
3
4
#include "../include/nbos.h"
5
#include "arena.h"
6
#include "resolve.h"
7
8
#include <stdint.h>
9
10
[[nodiscard]] int activate(
11
    arena               *a,
12
    const system_cfg    *cfg,
13
    const resolved_list *resolved,
14
    uint32_t             generation);
15
16
[[nodiscard]] int activate_rollback(arena *a);
17
18
#endif