MCPcopy Create free account
hub / github.com/F-Stack/f-stack / tdma_isfull

Function tdma_isfull

freebsd/net80211/ieee80211_scan_sta.c:998–1008  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

996
997#ifdef IEEE80211_SUPPORT_TDMA
998static int
999tdma_isfull(const struct ieee80211_tdma_param *tdma)
1000{
1001 int slot, slotcnt;
1002
1003 slotcnt = tdma->tdma_slotcnt;
1004 for (slot = slotcnt-1; slot >= 0; slot--)
1005 if (isclr(tdma->tdma_inuse, slot))
1006 return 0;
1007 return 1;
1008}
1009#endif /* IEEE80211_SUPPORT_TDMA */
1010
1011/*

Callers 1

match_bssFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected