Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(579)

Side by Side Diff: src/d8-posix.cc

Issue 57050: Fix developer shell build on Windows (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/d8.cc ('k') | src/d8-windows.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2009 the V8 project authors. All rights reserved. 1 // Copyright 2009 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after
531 const char* message = "os.chdir(): String conversion of argument failed."; 531 const char* message = "os.chdir(): String conversion of argument failed.";
532 return ThrowException(String::New(message)); 532 return ThrowException(String::New(message));
533 } 533 }
534 if (chdir(*directory) != 0) { 534 if (chdir(*directory) != 0) {
535 return ThrowException(String::New(strerror(errno))); 535 return ThrowException(String::New(strerror(errno)));
536 } 536 }
537 return v8::Undefined(); 537 return v8::Undefined();
538 } 538 }
539 539
540 540
541 Handle<Value> Shell::SetEnvironment(const Arguments& args) {
542 if (args.Length() != 2) {
543 const char* message = "setenv() takes two arguments";
544 return ThrowException(String::New(message));
545 }
546 String::Utf8Value var(args[0]);
547 String::Utf8Value value(args[1]);
548 if (*var == NULL) {
549 const char* message =
550 "os.setenv(): String conversion of variable name failed.";
551 return ThrowException(String::New(message));
552 }
553 if (*value == NULL) {
554 const char* message =
555 "os.setenv(): String conversion of variable contents failed.";
556 return ThrowException(String::New(message));
557 }
558 setenv(*var, *value, 1);
559 return v8::Undefined();
560 }
561
562
541 } // namespace v8 563 } // namespace v8
OLDNEW
« no previous file with comments | « src/d8.cc ('k') | src/d8-windows.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698