mirror of
https://github.com/cesanta/mongoose.git
synced 2025-01-09 22:58:09 +08:00
e8a97f12d7
Note: this is only the first step; the C sources won't be built until the second step is done. The actual build takes about 1.3s on cloud2 which still runs the docker containers and image layers on the very slow spinning disk. cloud3 has docker mounted on the SSD disk; measured speedups of 20-30% PUBLISHED_FROM=c5acef1d64ebc8dca8ed31f51685c8b3090c5767
16 lines
513 B
Markdown
16 lines
513 B
Markdown
---
|
|
title: "mg_mgr_init()"
|
|
decl_name: "mg_mgr_init"
|
|
symbol_kind: "func"
|
|
signature: |
|
|
void mg_mgr_init(struct mg_mgr *mgr, void *user_data);
|
|
---
|
|
|
|
Initialize Mongoose manager. Side effect: ignores SIGPIPE signal.
|
|
`mgr->user_data` field will be initialized with `user_data` parameter.
|
|
That is an arbitrary pointer, where user code can associate some data
|
|
with the particular Mongoose manager. For example, a C++ wrapper class
|
|
could be written, in which case `user_data` can hold a pointer to the
|
|
class instance.
|
|
|