Skip to content

Commit

Permalink
main: use hash list instead of fixed array
Browse files Browse the repository at this point in the history
  • Loading branch information
sreimers committed Jul 26, 2022
1 parent f4fe80f commit 7ff2086
Show file tree
Hide file tree
Showing 3 changed files with 330 additions and 182 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,12 @@ jobs:
rm re/libre.so || true
rm re/libre.dylib || true
make -C rem librem.a
cd retest; cmake -B build -DCMAKE_EXE_LINKER_FLAGS="--coverage" && \
cmake --build build -j && ./build/retest -a
cd retest && \
cmake -B build -DCMAKE_EXE_LINKER_FLAGS="--coverage" && \
cmake --build build -j && \
./build/retest -a -v && \
./build/retest -r -m select -v && \
./build/retest -r -m poll -v
- name: gcov
run: |
Expand Down
1 change: 1 addition & 0 deletions include/re_main.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ int re_debug(struct re_printf *pf, void *unused);
int re_nfds(void);

int re_alloc(struct re **rep);
void re_fhs_reuse_set(struct re *re, bool reuse);
int re_thread_attach(struct re *re);
void re_thread_detach(void);

Expand Down
Loading

0 comments on commit 7ff2086

Please sign in to comment.