diff options
author | Michael Brown | 2013-11-01 18:38:45 +0100 |
---|---|---|
committer | Michael Brown | 2013-11-05 18:15:24 +0100 |
commit | 16d37102cae2cad9842462cca473d8a3962629fb (patch) | |
tree | 29d7a92917218755c432eb58b76190d1fef40576 /src/include/usr | |
parent | [autoboot] Fix shell banner timeout (diff) | |
download | ipxe-16d37102cae2cad9842462cca473d8a3962629fb.tar.gz ipxe-16d37102cae2cad9842462cca473d8a3962629fb.tar.xz ipxe-16d37102cae2cad9842462cca473d8a3962629fb.zip |
[ifmgmt] Rewrite iflinkwait() to use monojob_wait()
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/usr')
-rw-r--r-- | src/include/usr/ifmgmt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/usr/ifmgmt.h b/src/include/usr/ifmgmt.h index f762c7ba..0b265fea 100644 --- a/src/include/usr/ifmgmt.h +++ b/src/include/usr/ifmgmt.h @@ -14,6 +14,6 @@ struct net_device; extern int ifopen ( struct net_device *netdev ); extern void ifclose ( struct net_device *netdev ); extern void ifstat ( struct net_device *netdev ); -extern int iflinkwait ( struct net_device *netdev, unsigned int max_wait_ms ); +extern int iflinkwait ( struct net_device *netdev, unsigned long timeout ); #endif /* _USR_IFMGMT_H */ |