This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to | |
* deal in the Software without restriction, including without limitation the | |
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | |
* sell copies of the Software, and to permit persons to whom the Software is | |
* furnished to do so, subject to the following conditions: | |
* | |
* The above copyright notice and this permission notice shall be included in |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
['-f', 'msvs', '-G', 'msvs_version=2010', '.\\node.gyp', '-I', '.\\common.gypi', '--depth=.', '-Dtarget_arch=ia32', '-Dcomponent=static_library', '-Dlibrary=static_library'] | |
Project files generated. | |
http_parser.vcxproj -> D:\nodejs\node3\Debug\http_parser.lib | |
openssl.vcxproj -> D:\nodejs\node3\Debug\openssl.lib | |
uv.vcxproj -> D:\nodejs\node3\Debug\uv.lib | |
v8_base.vcxproj -> D:\nodejs\node3\Debug\v8_base.lib | |
v8_nosnapshot.vcxproj -> D:\nodejs\node3\Debug\v8_nosnapshot.lib | |
v8_snapshot.vcxproj -> D:\nodejs\node3\Debug\v8_snapshot.lib | |
running 'python tools/test.py --mode=debug' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
typedef struct uv_ipc_s uv_ipc_t; | |
/* uv_ipc_t is a subclass of uv_stream_t */ | |
struct uv_ipc_s { | |
UV_HANDLE_FIELDS | |
UV_STREAM_FIELDS | |
UV_IPC_PRIVATE_FIELDS | |
}; | |