| Index: native_client_sdk/src/examples/hello_nacl_mounts/hello_nacl_mounts.c
|
| diff --git a/native_client_sdk/src/examples/hello_nacl_mounts/hello_nacl_mounts.c b/native_client_sdk/src/examples/hello_nacl_mounts/hello_nacl_mounts.c
|
| index bf5ff7770c9ff489e9df115f2181ebf46126ee94..63543d73f30ad483a5820b55b680760bd62e2e3d 100644
|
| --- a/native_client_sdk/src/examples/hello_nacl_mounts/hello_nacl_mounts.c
|
| +++ b/native_client_sdk/src/examples/hello_nacl_mounts/hello_nacl_mounts.c
|
| @@ -283,6 +283,13 @@ static PP_Bool Instance_DidCreate(PP_Instance instance,
|
| 0, /* mountflags */
|
| "type=PERSISTENT,expected_size=1048576"); /* data */
|
|
|
| + mount(
|
| + "", /* source. Use relative URL */
|
| + "/http", /* target */
|
| + "httpfs", /* filesystemtype */
|
| + 0, /* mountflags */
|
| + ""); /* data */
|
| +
|
| pthread_create(&g_handle_message_thread, NULL, &HandleMessageThread, NULL);
|
| InitializeMessageQueue();
|
|
|
|
|