diff options
author | Björn-Egil Dahlberg <[email protected]> | 2013-03-04 16:16:05 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2013-03-04 16:18:33 +0100 |
commit | 209f6091c24c63651132dae4cbcf1eab9ea8913c (patch) | |
tree | a8014ad655ae0136f10ae669a27305fe1a37e5db /erts/emulator/drivers/common/inet_drv.c | |
parent | 6ca494bba68eccc5359c96538bfbec9fe9f72a69 (diff) | |
download | otp-209f6091c24c63651132dae4cbcf1eab9ea8913c.tar.gz otp-209f6091c24c63651132dae4cbcf1eab9ea8913c.tar.bz2 otp-209f6091c24c63651132dae4cbcf1eab9ea8913c.zip |
erts: Use block comments - ansi style
Diffstat (limited to 'erts/emulator/drivers/common/inet_drv.c')
-rw-r--r-- | erts/emulator/drivers/common/inet_drv.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/erts/emulator/drivers/common/inet_drv.c b/erts/emulator/drivers/common/inet_drv.c index fb128fff7d..2451f41a82 100644 --- a/erts/emulator/drivers/common/inet_drv.c +++ b/erts/emulator/drivers/common/inet_drv.c @@ -3854,8 +3854,10 @@ static void desc_close(inet_descriptor* desc) desc->forced_events = 0; desc->send_would_block = 0; #endif - // We should close the fd here, but the other driver might still - // be selecting on it. + /* + * We should close the fd here, but the other driver might still + * be selecting on it. + */ if (!desc->is_ignored) driver_select(desc->port,(ErlDrvEvent)(long)desc->event, ERL_DRV_USE, 0); |