Intel: Windows 8 being launched before it's ready

Intel's CEO, Paul S. Otellini, stated that Windows 8 is being released before it's fully ready. This comment comes at a vulnerable time as Microsoft is preparing to launch Windows 8 to the public on October 26th. Improvements are still needed for the software, according to Otellini, who also mentioned that Microsoft can make these improvements after the product ships.

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

According to a report by Bloomberg, Intel's CEO, Paul S. Otellini, has stated to staff in Taiwan that Windows 8 is being released before it's fully ready. The comment comes at a particularly vulnerable time as Microsoft is getting ready to launch Windows 8 to the general public on October 26th.

Otellini is stated as saying that improvements still need to be made to Windows 8 but Microsoft will be able to do them after the product ships. According to the report: "'Improvements still need to be made to the software'", Otellini told employees at a company meeting in Taipei today, said the person, who asked not to be identified because the meeting was private"

Otellini also says that it is the correct move for Microsoft to push the product before it's fully complete by stating: "'Releasing the operating system before it’s fully baked is the right move, and Microsoft can make improvements after it ships,' Otellini told staffers".

For Microsoft, Windows 8 is a departure from it's previous operating systems that included a Start button in the lower left-hand corner. Replacing the traditional start menu is a new Start screen that makes use of hot corners and a charms bar for quick navigation.

The blended hybrid OS is a bold move for Microsoft as the company transitions into the new modern design language (formerly called Metro) across all of its products. If Otellini's comments hold true, it could be a damaging PR blow before the product becomes available to consumers.

Windows 8 hit RTM earlier this Summer and Neowin has been using the OS since early August. So far, the OS feels stable and has it's own unique advantages. Our full review of the OS will be out in the coming weeks before the product ships.


http://anonymz.com/?http://www.neowin.net/news/intel-windows-8-being-launched-before-it039s-ready



### 使用 `std::thread` 进行多线程编程 在 Windows 环境下使用 C++ 的 `std::thread` 库可以方便地创建和管理多个线程。下面是一个简单的例子来展示如何实现一个多线程程序。 #### 创建并启动新线程 通过实例化 `std::thread` 对象并将目标函数传递给它作为参数,即可轻松创建新的工作线程: ```cpp #include <iostream> #include <thread> void task(int id) { std::cout << "Thread ID: " << id << ", this_thread::get_id(): " << std::this_thread::get_id() << '\n'; } int main() { // Create two threads that execute 'task' std::thread t1(task, 1); std::thread t2(task, 2); // Wait for both threads to finish their execution before continuing. if (t1.joinable()) t1.join(); if (t2.joinable()) t2.join(); return 0; } ``` 此代码片段展示了两个独立的工作线程被创建出来执行相同的任务函数[^1]。 #### 处理返回值与共享数据 当需要处理来自不同线程的结果或共享某些资源时,则可能需要用到互斥锁 (`mutex`) 来保护这些临界区的数据访问安全;也可以考虑采用更高级别的同步机制如条件变量(`condition_variable`) 或者原子操作(`atomic<T>`). 对于想要获取子线程计算结果的情况,可以通过引用传参的方式让子线程修改外部定义好的容器内的元素,或者利用 `future/promise` 组件来进行异步通信。 ```cpp #include <iostream> #include <vector> #include <string> #include <thread> #include <chrono> // A simple function which takes longer time and returns result via reference parameter void longComputation(std::vector<int>& vec){ auto start = std::chrono::steady_clock::now(); while(true){ auto end = std::chrono::steady_clock::now(); if (std::chrono::duration_cast<std::chrono::seconds>(end-start).count()>3){break;} } vec.push_back(42); // Add computed value into vector after computation completes } int main(){ std::vector<int> results; // Launching multiple threads with different tasks... std::thread thd(longComputation,std::ref(results)); // Do other things here... // Join the thread back when done working elsewhere thd.join(); // Print out final outcome from all computations performed by launched threads for(auto& item :results){ std::cout<<item<<"\n"; } return 0; } ``` 这段示范说明了怎样在一个单独的进程中并发运行几个不同的活动,并且收集它们产生的输出.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值