File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ void Connection::EIO_Commit(uv_work_t* req) {
262
262
263
263
void Connection::EIO_AfterCommit (uv_work_t * req) {
264
264
CommitBaton* baton = static_cast <CommitBaton*>(req->data );
265
- ev_unref (EV_DEFAULT_UC );
265
+ uv_unref ( uv_default_loop () );
266
266
baton->connection ->Unref ();
267
267
268
268
Handle<Value> argv[2 ];
@@ -280,7 +280,7 @@ void Connection::EIO_Rollback(uv_work_t* req) {
280
280
281
281
void Connection::EIO_AfterRollback (uv_work_t * req) {
282
282
RollbackBaton* baton = static_cast <RollbackBaton*>(req->data );
283
- ev_unref (EV_DEFAULT_UC );
283
+ uv_unref ( uv_default_loop () );
284
284
baton->connection ->Unref ();
285
285
286
286
Handle<Value> argv[2 ];
@@ -442,7 +442,7 @@ Local<Array> Connection::CreateV8ArrayFromRows(ExecuteBaton* baton) {
442
442
443
443
void Connection::EIO_AfterExecute (uv_work_t * req) {
444
444
ExecuteBaton* baton = static_cast <ExecuteBaton*>(req->data );
445
- ev_unref (EV_DEFAULT_UC );
445
+ uv_unref ( uv_default_loop () );
446
446
baton->connection ->Unref ();
447
447
448
448
try {
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ void OracleClient::EIO_Connect(uv_work_t* req) {
93
93
void OracleClient::EIO_AfterConnect (uv_work_t * req) {
94
94
HandleScope scope;
95
95
connect_baton_t * baton = static_cast <connect_baton_t *>(req->data );
96
- ev_unref (EV_DEFAULT_UC );
96
+ uv_unref ( uv_default_loop () );
97
97
baton->client ->Unref ();
98
98
99
99
Handle<Value> argv[2 ];
You can’t perform that action at this time.
0 commit comments