blob: 69dc659c0da6ee0fb66cd5c19da26da542e71944 (
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
|
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/nekernel-org/nekernel
/***
Dtor and ctors.
*/
#ifndef __INC_NETWORK_DEVICE_H__
#include <NetworkKit/NetworkDevice.h>
#endif // __INC_NETWORK_DEVICE_H__
namespace Kernel {
inline NetworkDevice::NetworkDevice(
void (*out)(IDevice<NetworkDeviceCommand>*, NetworkDeviceCommand),
void (*in)(IDevice<NetworkDeviceCommand>*, NetworkDeviceCommand), void (*on_cleanup)(void))
: IDevice<NetworkDeviceCommand>(out, in), fCleanup(on_cleanup) {
kout << "NetworkDevice initialized.\r";
MUST_PASS(out && in && on_cleanup);
}
inline NetworkDevice::~NetworkDevice() {
kout << "NetworkDevice cleanup.\r";
if (fCleanup) fCleanup();
}
} // namespace Kernel
|